()
| 606 | |
| 607 | #[test] |
| 608 | fn test_large_progress() { |
| 609 | let bar = create_progress_bar(u64::MAX, "Large"); |
| 610 | bar.inc(1); |
| 611 | assert_eq!(bar.position(), 1); |
| 612 | bar.finish(); |
| 613 | } |
| 614 | |
| 615 | #[test] |
| 616 | fn test_empty_message() { |
nothing calls this directly
no test coverage detected