()
| 572 | |
| 573 | #[test] |
| 574 | fn test_is_finished() { |
| 575 | let bar = create_progress_bar(100, "Working..."); |
| 576 | assert!(!is_finished(&bar)); |
| 577 | bar.finish(); |
| 578 | assert!(is_finished(&bar)); |
| 579 | } |
| 580 | |
| 581 | // ------------------------------------------------------------------------- |
| 582 | // Style Tests |
nothing calls this directly
no test coverage detected