(t *testing.T)
| 10 | ) |
| 11 | |
| 12 | func Test_NewCliOutput(t *testing.T) { |
| 13 | got := NewCliOutput(true) |
| 14 | assert.IsType(t, OutputWriter{}, got) |
| 15 | } |
| 16 | |
| 17 | func Test_GetEventHandler(t *testing.T) { |
| 18 | writer := NewCliOutput(true) |
nothing calls this directly
no test coverage detected