(t *testing.T)
| 224 | } |
| 225 | |
| 226 | func TestBoxPrinter_WithTitleWithTitleBottomCenter(t *testing.T) { |
| 227 | p := pterm.BoxPrinter{} |
| 228 | p2 := p.WithTitleBottomCenter().WithTitle("a").Sprint("Lorem Ipsum") |
| 229 | |
| 230 | testza.AssertContains(t, p2, "Lorem Ipsum") |
| 231 | } |
| 232 | |
| 233 | func TestBoxPrinter_WithBoxStyle(t *testing.T) { |
| 234 | p := pterm.BoxPrinter{} |
nothing calls this directly
no test coverage detected
searching dependent graphs…