()
| 705 | |
| 706 | #[test] |
| 707 | fn test_get_change_not_found() { |
| 708 | let store = MemoryChangeStore::new(); |
| 709 | let hash = Hash::of(b"nonexistent"); |
| 710 | |
| 711 | let result = store.get_change(&hash); |
| 712 | assert!(result.is_err()); |
| 713 | assert!(matches!(result.unwrap_err(), MemoryStoreError::NotFound(_))); |
| 714 | } |
| 715 | |
| 716 | #[test] |
| 717 | fn test_has_contents() { |
nothing calls this directly
no test coverage detected