()
| 839 | |
| 840 | #[test] |
| 841 | fn test_file_metadata_not_found() { |
| 842 | let wc = Memory::new(); |
| 843 | let result = wc.file_metadata("nonexistent"); |
| 844 | assert!(matches!(result, Err(MemoryError::NotFound { .. }))); |
| 845 | } |
| 846 | |
| 847 | #[test] |
| 848 | fn test_read_file() { |
nothing calls this directly
no test coverage detected