(t *testing.T)
| 24 | } |
| 25 | |
| 26 | func TestNamespaceName(t *testing.T) { |
| 27 | namespaceName := Namespace{name: "foo"}.Name() |
| 28 | assert.Check(t, is.Equal("foo", namespaceName)) |
| 29 | } |
| 30 | |
| 31 | func TestAddStackLabel(t *testing.T) { |
| 32 | labels := map[string]string{ |
nothing calls this directly
no test coverage detected
searching dependent graphs…