()
| 551 | |
| 552 | #[test] |
| 553 | fn test_is_finished() { |
| 554 | let bar = create_progress_bar(100, "Working..."); |
| 555 | assert!(!is_finished(&bar)); |
| 556 | bar.finish(); |
| 557 | assert!(is_finished(&bar)); |
| 558 | } |
| 559 | |
| 560 | // ------------------------------------------------------------------------- |
| 561 | // Style Tests |
nothing calls this directly
no test coverage detected