(t *testing.T)
| 91 | } |
| 92 | |
| 93 | func Test_RuntimeWithSkip(t *testing.T) { |
| 94 | s := getExampleTestCases() |
| 95 | s[0].Skip = true |
| 96 | |
| 97 | r := getRuntime() |
| 98 | got := r.Start(s) |
| 99 | |
| 100 | assert.Equal(t, 1, got.Skipped) |
| 101 | } |
| 102 | |
| 103 | func getRuntime() Runtime { |
| 104 | eh := EventHandler{ |
nothing calls this directly
no test coverage detected