(t *testing.T)
| 165 | } |
| 166 | |
| 167 | func TestBoxPrinter_WithTitleBottomRight(t *testing.T) { |
| 168 | p := pterm.BoxPrinter{} |
| 169 | p2 := p.WithTitleBottomRight() |
| 170 | |
| 171 | testza.AssertEqual(t, true, p2.TitleBottomRight) |
| 172 | testza.AssertEqual(t, false, p.TitleBottomRight) |
| 173 | } |
| 174 | |
| 175 | func TestBoxPrinter_WithTitleBottomLeft(t *testing.T) { |
| 176 | p := pterm.BoxPrinter{} |
nothing calls this directly
no test coverage detected
searching dependent graphs…