(t *testing.T)
| 203 | } |
| 204 | |
| 205 | func TestBoxPrinter_WithTitleWithTitleBottomRight(t *testing.T) { |
| 206 | p := pterm.BoxPrinter{} |
| 207 | p2 := p.WithTitleBottomRight().WithTitle("a").Sprint("Lorem Ipsum") |
| 208 | |
| 209 | testza.AssertContains(t, p2, "Lorem Ipsum") |
| 210 | } |
| 211 | |
| 212 | func TestBoxPrinter_WithTitleWithTitleTopRight(t *testing.T) { |
| 213 | p := pterm.BoxPrinter{} |
nothing calls this directly
no test coverage detected
searching dependent graphs…