(t *testing.T)
| 155 | } |
| 156 | |
| 157 | func TestTablePrinter_WithRowSeparator(t *testing.T) { |
| 158 | p := pterm.TablePrinter{} |
| 159 | p2 := p.WithRowSeparator("-") |
| 160 | |
| 161 | testza.AssertEqual(t, "-", p2.RowSeparator) |
| 162 | } |
| 163 | |
| 164 | func TestTablePrinter_WithRowSeparatorStyle(t *testing.T) { |
| 165 | s := pterm.NewStyle(pterm.FgRed, pterm.BgBlue, pterm.Bold) |
nothing calls this directly
no test coverage detected
searching dependent graphs…