(t *testing.T)
| 72 | } |
| 73 | |
| 74 | func Test_TestCommand_FailingSuite(t *testing.T) { |
| 75 | err := TestCommand("testdata/test_fail.yaml", TestCommandContext{}) |
| 76 | assert.Equal(t, "Test suite failed, use --verbose for more detailed output", err.Error()) |
| 77 | } |
| 78 | |
| 79 | func Test_TestCommand_FileWithDir(t *testing.T) { |
| 80 | err := TestCommand("testdata", TestCommandContext{}) |
nothing calls this directly
no test coverage detected