(t *testing.T)
| 189 | } |
| 190 | |
| 191 | func TestBoxPrinter_WithTitleWithTitleBottomLeft(t *testing.T) { |
| 192 | p := pterm.BoxPrinter{} |
| 193 | p2 := p.WithTitleBottomLeft().WithTitle("a").Sprint("Lorem Ipsum") |
| 194 | |
| 195 | testza.AssertContains(t, p2, "Lorem Ipsum") |
| 196 | } |
| 197 | |
| 198 | func TestBoxPrinter_WithTitleWithTitleTopLeft(t *testing.T) { |
| 199 | p := pterm.BoxPrinter{} |
nothing calls this directly
no test coverage detected
searching dependent graphs…