()
| 223 | |
| 224 | #[test] |
| 225 | fn hash_distinguishes_count_from_value() { |
| 226 | // Two empty inputs must hash distinctly from a single-zero |
| 227 | // input — guards against the count-fold being load-bearing. |
| 228 | let h_empty = compute_mesh_hash(&[], &[]); |
| 229 | let h_one = compute_mesh_hash(&[[0.0_f32; 3]], &[0_u32]); |
| 230 | assert_ne!(h_empty, h_one); |
| 231 | } |
| 232 | |
| 233 | #[test] |
| 234 | fn store_then_load_roundtrips() { |
nothing calls this directly
no test coverage detected