(t *testing.T)
| 48 | } |
| 49 | |
| 50 | func Test_TestCommand_WithTitle(t *testing.T) { |
| 51 | out := captureOutput(func() { |
| 52 | context := TestCommandContext{} |
| 53 | context.Filters = commanderRuntime.Filters{"another"} |
| 54 | TestCommand("testdata/test.yaml", context) |
| 55 | }) |
| 56 | assert.Contains(t, out, "✓ [local] another") |
| 57 | } |
| 58 | |
| 59 | func Test_TestCommand_WithConfig(t *testing.T) { |
| 60 | testSuite := "testdata/overwrite.yaml" |
nothing calls this directly
no test coverage detected