(t *testing.T)
| 79 | } |
| 80 | |
| 81 | func TestWrapText_Empty(t *testing.T) { |
| 82 | result := wrapText("", 25) |
| 83 | t.Logf("wrapText('', 25) returned: '%s'", result) |
| 84 | } |
| 85 | |
| 86 | func TestWrapText_NoWrapNeeded(t *testing.T) { |
| 87 | short := "Short" |
nothing calls this directly
no test coverage detected