| 16 | import "testing" |
| 17 | |
| 18 | type collectorDescribedByCollect struct { |
| 19 | cnt Counter |
| 20 | gge Gauge |
| 21 | } |
| 22 | |
| 23 | func (c collectorDescribedByCollect) Collect(ch chan<- Metric) { |
| 24 | ch <- c.cnt |
nothing calls this directly
no outgoing calls
no test coverage detected