(t *testing.T)
| 36 | } |
| 37 | |
| 38 | func TestNilCondition(t *testing.T) { |
| 39 | s := new(Statement) |
| 40 | if len(s.BuildCondition(nil)) != 0 { |
| 41 | t.Errorf("Nil condition should be empty") |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | func TestNameMatcher(t *testing.T) { |
| 46 | for k, v := range map[string][]string{ |
nothing calls this directly
no test coverage detected