()
| 446 | |
| 447 | #[test] |
| 448 | fn test_set_message() { |
| 449 | let bar = create_progress_bar(100, "Initial message"); |
| 450 | set_message(&bar, "Updated message"); |
| 451 | // We can't easily verify the message content, but this ensures it doesn't panic |
| 452 | bar.finish(); |
| 453 | } |
| 454 | |
| 455 | // ------------------------------------------------------------------------- |
| 456 | // Completion Tests |
nothing calls this directly
no test coverage detected