(t *testing.T)
| 140 | } |
| 141 | |
| 142 | func TestTablePrinter_WithHeaderRowSeparator(t *testing.T) { |
| 143 | p := pterm.TablePrinter{} |
| 144 | p2 := p.WithHeaderRowSeparator("-") |
| 145 | |
| 146 | testza.AssertEqual(t, "-", p2.HeaderRowSeparator) |
| 147 | } |
| 148 | |
| 149 | func TestTablePrinter_WithHeaderRowSeparatorStyle(t *testing.T) { |
| 150 | s := pterm.NewStyle(pterm.FgRed, pterm.BgBlue, pterm.Bold) |
nothing calls this directly
no test coverage detected
searching dependent graphs…