(t *testing.T)
| 117 | } |
| 118 | |
| 119 | func TestBoxPrinter_WithBottomPadding(t *testing.T) { |
| 120 | p := pterm.BoxPrinter{} |
| 121 | p2 := p.WithBottomPadding(5) |
| 122 | |
| 123 | testza.AssertEqual(t, 5, p2.BottomPadding) |
| 124 | testza.AssertZero(t, p.BottomPadding) |
| 125 | } |
| 126 | |
| 127 | func TestBoxPrinter_WithBottomRightCornerString(t *testing.T) { |
| 128 | p := pterm.BoxPrinter{} |
nothing calls this directly
no test coverage detected
searching dependent graphs…