()
| 585 | |
| 586 | #[test] |
| 587 | fn test_large_progress() { |
| 588 | let bar = create_progress_bar(u64::MAX, "Large"); |
| 589 | bar.inc(1); |
| 590 | assert_eq!(bar.position(), 1); |
| 591 | bar.finish(); |
| 592 | } |
| 593 | |
| 594 | #[test] |
| 595 | fn test_empty_message() { |
nothing calls this directly
no test coverage detected