(t *testing.T)
| 169 | } |
| 170 | |
| 171 | func TestGetColumnMaxWidth_Default(t *testing.T) { |
| 172 | wrappedColumns = make(map[int]int) |
| 173 | |
| 174 | width := getColumnMaxWidth(5) |
| 175 | if width != 50 { |
| 176 | t.Errorf("getColumnMaxWidth(5) = %d, want default 50", width) |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | // ======================================== |
| 181 | // Help Content Tests |
nothing calls this directly
no test coverage detected