| 69 | } |
| 70 | |
| 71 | type mockTransactionGatherer struct { |
| 72 | g prometheus.Gatherer |
| 73 | gatherInvoked int |
| 74 | doneInvoked int |
| 75 | } |
| 76 | |
| 77 | func (g *mockTransactionGatherer) Gather() (_ []*dto.MetricFamily, done func(), err error) { |
| 78 | g.gatherInvoked++ |
nothing calls this directly
no outgoing calls
no test coverage detected