(t *testing.T)
| 133 | } |
| 134 | |
| 135 | func TestTruncateText_ZeroWidth(t *testing.T) { |
| 136 | text := "Some text" |
| 137 | result := truncateText(text, 0) |
| 138 | if result != text { |
| 139 | t.Errorf("Zero maxWidth should return original text: got '%s', want '%s'", result, text) |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | // ======================================== |
| 144 | // Column Width Tests |
nothing calls this directly
no test coverage detected