MockEmailbackendImplementation is an email backend that simply discards the emails
| 218 | |
| 219 | // MockEmailbackendImplementation is an email backend that simply discards the emails |
| 220 | type MockEmailbackendImplementation struct { |
| 221 | mu sync.RWMutex |
| 222 | Emails []MockEmail |
| 223 | } |
| 224 | |
| 225 | // Clear clears the mock email queue |
| 226 | func (b *MockEmailbackendImplementation) Clear() { |
nothing calls this directly
no outgoing calls
no test coverage detected