()
| 903 | |
| 904 | #[test] |
| 905 | fn test_table_emoji() { |
| 906 | let mut table = Table::new(); |
| 907 | table.set_header(vec!["Status", "Name"]); |
| 908 | table.add_row(vec!["✓", "Complete"]); |
| 909 | table.add_row(vec!["✗", "Failed"]); |
| 910 | |
| 911 | let _ = table.to_string(); |
| 912 | } |
| 913 | |
| 914 | #[test] |
| 915 | fn test_alignment_default() { |
nothing calls this directly
no test coverage detected