(b *testing.B)
| 748 | } |
| 749 | |
| 750 | func BenchmarkHandler(b *testing.B) { |
| 751 | for i := 0; i < b.N; i++ { |
| 752 | testHandler(b) |
| 753 | } |
| 754 | } |
| 755 | |
| 756 | func TestAlreadyRegistered(t *testing.T) { |
| 757 | original := prometheus.NewCounterVec( |
nothing calls this directly
no test coverage detected