(t *testing.T)
| 28 | } |
| 29 | |
| 30 | func TestNewPrinter(t *testing.T) { |
| 31 | samplePrinter := NewPrinter() |
| 32 | assert.Len(t, samplePrinter.watchers, 0) |
| 33 | } |
| 34 | |
| 35 | func TestPrinter_RegisterWatchers(t *testing.T) { |
| 36 | testPrinter := NewPrinter() |
nothing calls this directly
no test coverage detected