| 198 | var errTest = errors.New("i'm an error") |
| 199 | |
| 200 | type fake struct { |
| 201 | sync.Mutex |
| 202 | |
| 203 | returnErr bool |
| 204 | checked int |
| 205 | stored []types.Result |
| 206 | maintained int |
| 207 | notified int |
| 208 | } |
| 209 | |
| 210 | func (f *fake) Type() string { |
| 211 | return "fake" |
nothing calls this directly
no outgoing calls
no test coverage detected