(t *testing.T)
| 92 | } |
| 93 | |
| 94 | func TestProgressbarPrinter_GetElapsedTime(t *testing.T) { |
| 95 | p := pterm.DefaultProgressbar |
| 96 | p.Start() |
| 97 | p.Stop() |
| 98 | testza.AssertNotZero(t, p.GetElapsedTime()) |
| 99 | } |
| 100 | |
| 101 | func TestProgressbarPrinter_Increment(t *testing.T) { |
| 102 | p := pterm.DefaultProgressbar.WithTotal(2000) |
nothing calls this directly
no test coverage detected
searching dependent graphs…