(t *testing.T)
| 137 | } |
| 138 | |
| 139 | func TestPanelPrinter_WithSameColumnWidth(t *testing.T) { |
| 140 | p := pterm.PanelPrinter{} |
| 141 | p2 := p.WithSameColumnWidth() |
| 142 | |
| 143 | testza.AssertTrue(t, p2.SameColumnWidth) |
| 144 | testza.AssertFalse(t, p.SameColumnWidth) |
| 145 | } |
| 146 | |
| 147 | func TestPanelPrinter_WithBoxPrinter(t *testing.T) { |
| 148 | p := pterm.PanelPrinter{} |
nothing calls this directly
no test coverage detected
searching dependent graphs…