()
| 216 | } |
| 217 | |
| 218 | func ExampleProgressBar_AddMax() { |
| 219 | bar := NewOptions(50, OptionSetWidth(10), OptionSetPredictTime(false)) |
| 220 | bar.AddMax(50) |
| 221 | bar.Add(100) |
| 222 | // Output: |
| 223 | // 100% |██████████| |
| 224 | } |
| 225 | |
| 226 | func ExampleOptionShowIts_spinner() { |
| 227 | /* |
nothing calls this directly
no test coverage detected
searching dependent graphs…