()
| 884 | |
| 885 | #[test] |
| 886 | fn test_table_missing_cells() { |
| 887 | let mut table = Table::new(); |
| 888 | table.set_header(vec!["A", "B", "C"]); |
| 889 | table.add_row(vec!["1"]); // Only one cell for three columns |
| 890 | |
| 891 | // Should not panic |
| 892 | let _ = table.to_string(); |
| 893 | } |
| 894 | |
| 895 | #[test] |
| 896 | fn test_table_unicode() { |
nothing calls this directly
no test coverage detected