(t *testing.T)
| 15 | } |
| 16 | |
| 17 | func Test_Validate(t *testing.T) { |
| 18 | test := getExampleTest() |
| 19 | |
| 20 | got := Validate(test) |
| 21 | |
| 22 | assert.True(t, got.ValidationResult.Success) |
| 23 | assert.Equal(t, test, got.TestCase) |
| 24 | } |
| 25 | |
| 26 | func Test_ValidateStdoutShouldFail(t *testing.T) { |
| 27 | test := getExampleTest() |
nothing calls this directly
no test coverage detected