()
| 106 | |
| 107 | #[test] |
| 108 | fn dense_tile_starts_all_null() { |
| 109 | let s = schema_4x4(); |
| 110 | let t = DenseTile::empty(&s); |
| 111 | assert_eq!(t.cell_count(), 16); |
| 112 | for col in &t.attr_cols { |
| 113 | assert!(col.iter().all(|c| matches!(c, CellValue::Null))); |
| 114 | } |
| 115 | } |
| 116 | } |
nothing calls this directly
no test coverage detected