()
| 971 | |
| 972 | #[test] |
| 973 | fn test_vertex_encoding_ordering() { |
| 974 | // Verify that encoded vertices sort correctly (by change_id, then start, then end) |
| 975 | let v1 = encode_vertex(1, 0, 10); |
| 976 | let v2 = encode_vertex(1, 10, 20); |
| 977 | let v3 = encode_vertex(2, 0, 10); |
| 978 | |
| 979 | assert!(v1 < v2, "same change, v1 should be before v2"); |
| 980 | assert!(v2 < v3, "v2 should be before v3 (different change)"); |
| 981 | } |
| 982 | |
| 983 | #[test] |
| 984 | fn test_vertex_encoding_ordering_across_byte_boundary() { |
nothing calls this directly
no test coverage detected