()
| 731 | |
| 732 | #[test] |
| 733 | fn test_table_set_header() { |
| 734 | let mut table = Table::new(); |
| 735 | table.set_header(vec!["A", "B", "C"]); |
| 736 | assert_eq!(table.column_count(), 3); |
| 737 | } |
| 738 | |
| 739 | #[test] |
| 740 | fn test_table_add_row() { |
nothing calls this directly
no test coverage detected