(t *testing.T)
| 23 | ) |
| 24 | |
| 25 | func TestDelete(t *testing.T) { |
| 26 | vec := NewGaugeVec( |
| 27 | GaugeOpts{ |
| 28 | Name: "test", |
| 29 | Help: "helpless", |
| 30 | }, |
| 31 | []string{"l1", "l2"}, |
| 32 | ) |
| 33 | testDelete(t, vec) |
| 34 | } |
| 35 | |
| 36 | func TestDeleteWithCollisions(t *testing.T) { |
| 37 | vec := NewGaugeVec( |
nothing calls this directly
no test coverage detected