(t *testing.T)
| 87 | } |
| 88 | |
| 89 | func TestTableWriter_EmptyTable(t *testing.T) { |
| 90 | tw := NewTableWriter() |
| 91 | |
| 92 | var buf bytes.Buffer |
| 93 | tw.Flush(&buf) |
| 94 | |
| 95 | if buf.String() != "" { |
| 96 | t.Errorf("expected empty output for empty table, got %q", buf.String()) |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | func TestTableWriter_SeparatorSizing(t *testing.T) { |
| 101 | tw := NewTableWriter() |
nothing calls this directly
no test coverage detected