()
| 525 | |
| 526 | #[test] |
| 527 | fn build_is_deterministic() { |
| 528 | let raw = encode(&json!({"p": 1, "q": 2, "r": 3})); |
| 529 | let a = build_sidecar(&raw).unwrap(); |
| 530 | let b = build_sidecar(&raw).unwrap(); |
| 531 | assert_eq!(a, b); |
| 532 | } |
| 533 | |
| 534 | // ── Hash collision handling ─────────────────────────────────────────── |
| 535 |
nothing calls this directly
no test coverage detected