(c chan<- prometheus.Metric)
| 49 | |
| 50 | func (u uncheckedCollector) Describe(_ chan<- *prometheus.Desc) {} |
| 51 | func (u uncheckedCollector) Collect(c chan<- prometheus.Metric) { |
| 52 | u.c.Collect(c) |
| 53 | } |
| 54 | |
| 55 | func testHandler(t testing.TB) { |
| 56 | // TODO(beorn7): This test is a bit too "end-to-end". It tests quite a |