(t *testing.T)
| 447 | } |
| 448 | |
| 449 | func TestCurryVec(t *testing.T) { |
| 450 | vec := NewCounterVec( |
| 451 | CounterOpts{ |
| 452 | Name: "test", |
| 453 | Help: "helpless", |
| 454 | }, |
| 455 | []string{"one", "two", "three"}, |
| 456 | ) |
| 457 | testCurryVec(t, vec) |
| 458 | } |
| 459 | |
| 460 | func TestCurryVecWithCollisions(t *testing.T) { |
| 461 | vec := NewCounterVec( |
nothing calls this directly
no test coverage detected