()
| 398 | |
| 399 | #[test] |
| 400 | fn invalidate_removes_entry() { |
| 401 | let mut cache = DocCache::new(16); |
| 402 | cache.put(0, 1, "users", "u1", b"alice"); |
| 403 | cache.invalidate(0, 1, "users", "u1"); |
| 404 | assert_eq!(cache.get(0, 1, "users", "u1"), None); |
| 405 | } |
| 406 | |
| 407 | #[test] |
| 408 | fn tenant_isolation() { |
nothing calls this directly
no test coverage detected