(t *testing.T)
| 173 | } |
| 174 | |
| 175 | func TestBoxPrinter_WithTitleBottomLeft(t *testing.T) { |
| 176 | p := pterm.BoxPrinter{} |
| 177 | p2 := p.WithTitleBottomLeft() |
| 178 | |
| 179 | testza.AssertEqual(t, true, p2.TitleBottomLeft) |
| 180 | testza.AssertEqual(t, false, p.TitleBottomLeft) |
| 181 | } |
| 182 | |
| 183 | func TestBoxPrinter_WithTitleBottomCenter(t *testing.T) { |
| 184 | p := pterm.BoxPrinter{} |
nothing calls this directly
no test coverage detected
searching dependent graphs…