| 390 | class TestMockFSGeneric : public ::testing::Test, public GenericFileSystemTest { |
| 391 | public: |
| 392 | void SetUp() override { |
| 393 | time_ = TimePoint(TimePoint::duration(42)); |
| 394 | fs_ = std::make_shared<MockFileSystemType>(time_); |
| 395 | } |
| 396 | |
| 397 | protected: |
| 398 | std::shared_ptr<FileSystem> GetEmptyFileSystem() override { return fs_; } |
nothing calls this directly
no test coverage detected