| 19 | ) |
| 20 | |
| 21 | type fakeReporter struct { |
| 22 | mu sync.Mutex |
| 23 | s []workspaceapps.StatsReport |
| 24 | err error |
| 25 | errN int |
| 26 | } |
| 27 | |
| 28 | func (r *fakeReporter) stats() []workspaceapps.StatsReport { |
| 29 | r.mu.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected