| 55 | } |
| 56 | |
| 57 | auto Mount(BlockDevice* device) -> Expected<Inode*> override { |
| 58 | mount_called = true; |
| 59 | last_device = device; |
| 60 | return &root_inode; |
| 61 | } |
| 62 | |
| 63 | auto Unmount() -> Expected<void> override { |
| 64 | unmount_called = true; |
no outgoing calls
no test coverage detected