(t *testing.T)
| 99 | } |
| 100 | |
| 101 | func TestProgressbarPrinter_Increment(t *testing.T) { |
| 102 | p := pterm.DefaultProgressbar.WithTotal(2000) |
| 103 | p.Increment() |
| 104 | testza.AssertEqual(t, 1, p.Current) |
| 105 | } |
| 106 | |
| 107 | func TestProgressbarPrinter_WithBarStyle(t *testing.T) { |
| 108 | s := pterm.NewStyle(pterm.FgRed, pterm.BgBlue, pterm.Bold) |