(t *testing.T)
| 92 | } |
| 93 | |
| 94 | func TestWrapText_ExactLength(t *testing.T) { |
| 95 | text := "Exactly25CharactersHere!!" // 25 characters |
| 96 | result := wrapText(text, 25) |
| 97 | if result != text { |
| 98 | t.Errorf("Text at exact length should not be wrapped") |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | // ======================================== |
| 103 | // Text Truncation Tests |
nothing calls this directly
no test coverage detected