(t *testing.T)
| 9 | ) |
| 10 | |
| 11 | func TestNewValidationResult(t *testing.T) { |
| 12 | mr := matcher.MatcherResult{} |
| 13 | got := newValidationResult(mr) |
| 14 | assert.IsType(t, ValidationResult{}, got) |
| 15 | } |
| 16 | |
| 17 | func Test_Validate(t *testing.T) { |
| 18 | test := getExampleTest() |
nothing calls this directly
no test coverage detected