()
| 772 | |
| 773 | #[test] |
| 774 | fn engine_exposes_references() { |
| 775 | let txn = MockTxn::new(); |
| 776 | let store = MemoryChangeStore::new(); |
| 777 | let engine = SemanticMergeEngine::new(&txn, &store); |
| 778 | // Smoke-test that we can access the underlying references. |
| 779 | let _t: &MockTxn = engine.txn(); |
| 780 | let _c: &MemoryChangeStore = engine.change_store(); |
| 781 | } |
| 782 | |
| 783 | // ---- SemanticMergeEngine: content read failure → NoCrdtData ----------- |
| 784 |
nothing calls this directly
no test coverage detected