()
| 434 | |
| 435 | #[test] |
| 436 | fn test_create_hidden_progress() { |
| 437 | let bar = create_hidden_progress(50); |
| 438 | assert_eq!(bar.length(), Some(50)); |
| 439 | bar.inc(10); |
| 440 | assert_eq!(bar.position(), 10); |
| 441 | bar.finish(); |
| 442 | } |
| 443 | |
| 444 | // ------------------------------------------------------------------------- |
| 445 | // Progress Operations Tests |
nothing calls this directly
no test coverage detected