(t *testing.T)
| 141 | } |
| 142 | |
| 143 | func TestBoxPrinter_WithTitleTopLeft(t *testing.T) { |
| 144 | p := pterm.BoxPrinter{} |
| 145 | p2 := p.WithTitleTopLeft() |
| 146 | |
| 147 | testza.AssertEqual(t, true, p2.TitleTopLeft) |
| 148 | testza.AssertEqual(t, false, p.TitleTopLeft) |
| 149 | } |
| 150 | |
| 151 | func TestBoxPrinter_WithTitleTopRight(t *testing.T) { |
| 152 | p := pterm.BoxPrinter{} |
nothing calls this directly
no test coverage detected
searching dependent graphs…