(t *testing.T)
| 186 | } |
| 187 | |
| 188 | func TestTablePrinter_WithRightAlignment(t *testing.T) { |
| 189 | s := true |
| 190 | p := pterm.TablePrinter{} |
| 191 | p2 := p.WithRightAlignment(s) |
| 192 | |
| 193 | testza.AssertEqual(t, s, p2.RightAlignment) |
| 194 | } |
| 195 | |
| 196 | func TestTablePrinter_WithWriter(t *testing.T) { |
| 197 | p := pterm.TablePrinter{} |
nothing calls this directly
no test coverage detected
searching dependent graphs…