(t *testing.T)
| 48 | } |
| 49 | |
| 50 | func TestTableFormatter(t *testing.T) { |
| 51 | f := &TableFormatter{} |
| 52 | assert.Equal(t, "ID Name Record count Comment\nZ1RWMUCMCPKCJX example.com. 2 comment\n", formatTest(f)) |
| 53 | } |
| 54 | |
| 55 | func TestCSVFormatter(t *testing.T) { |
| 56 | f := &CSVFormatter{} |
nothing calls this directly
no test coverage detected