(t *testing.T)
| 176 | } |
| 177 | |
| 178 | func TestProgressbarPrinter_WithTitle(t *testing.T) { |
| 179 | p := pterm.ProgressbarPrinter{} |
| 180 | p2 := p.WithTitle("test") |
| 181 | |
| 182 | testza.AssertEqual(t, "test", p2.Title) |
| 183 | } |
| 184 | |
| 185 | func TestProgressbarPrinter_WithTitleStyle(t *testing.T) { |
| 186 | s := pterm.NewStyle(pterm.FgRed, pterm.BgBlue, pterm.Bold) |
nothing calls this directly
no test coverage detected
searching dependent graphs…