()
| 894 | |
| 895 | #[test] |
| 896 | fn test_table_unicode() { |
| 897 | let mut table = Table::new(); |
| 898 | table.set_header(vec!["名前", "値"]); |
| 899 | table.add_row(vec!["テスト", "42"]); |
| 900 | |
| 901 | let _ = table.to_string(); |
| 902 | } |
| 903 | |
| 904 | #[test] |
| 905 | fn test_table_emoji() { |
nothing calls this directly
no test coverage detected