(t *testing.T)
| 178 | } |
| 179 | |
| 180 | func TestTablePrinter_WithLeftAlignment(t *testing.T) { |
| 181 | s := true |
| 182 | p := pterm.TablePrinter{} |
| 183 | p2 := p.WithLeftAlignment(s) |
| 184 | |
| 185 | testza.AssertEqual(t, s, p2.LeftAlignment) |
| 186 | } |
| 187 | |
| 188 | func TestTablePrinter_WithRightAlignment(t *testing.T) { |
| 189 | s := true |
nothing calls this directly
no test coverage detected
searching dependent graphs…