(t *testing.T)
| 91 | } |
| 92 | |
| 93 | func TestDeleteLabelValues(t *testing.T) { |
| 94 | vec := NewGaugeVec( |
| 95 | GaugeOpts{ |
| 96 | Name: "test", |
| 97 | Help: "helpless", |
| 98 | }, |
| 99 | []string{"l1", "l2"}, |
| 100 | ) |
| 101 | testDeleteLabelValues(t, vec) |
| 102 | } |
| 103 | |
| 104 | func TestDeleteLabelValuesWithCollisions(t *testing.T) { |
| 105 | vec := NewGaugeVec( |
nothing calls this directly
no test coverage detected