()
| 467 | |
| 468 | #[test] |
| 469 | fn test_set_message() { |
| 470 | let bar = create_progress_bar(100, "Initial message"); |
| 471 | set_message(&bar, "Updated message"); |
| 472 | // We can't easily verify the message content, but this ensures it doesn't panic |
| 473 | bar.finish(); |
| 474 | } |
| 475 | |
| 476 | // ------------------------------------------------------------------------- |
| 477 | // Completion Tests |
nothing calls this directly
no test coverage detected