()
| 413 | |
| 414 | #[test] |
| 415 | fn test_create_hidden_progress() { |
| 416 | let bar = create_hidden_progress(50); |
| 417 | assert_eq!(bar.length(), Some(50)); |
| 418 | bar.inc(10); |
| 419 | assert_eq!(bar.position(), 10); |
| 420 | bar.finish(); |
| 421 | } |
| 422 | |
| 423 | // ------------------------------------------------------------------------- |
| 424 | // Progress Operations Tests |
nothing calls this directly
no test coverage detected