| 930 | class TestSlowFSGeneric : public ::testing::Test, public GenericFileSystemTest { |
| 931 | public: |
| 932 | void SetUp() override { |
| 933 | time_ = TimePoint(TimePoint::duration(42)); |
| 934 | fs_ = std::make_shared<MockFileSystem>(time_); |
| 935 | slow_fs_ = std::make_shared<SlowFileSystem>(fs_, 0.001); |
| 936 | } |
| 937 | |
| 938 | protected: |
| 939 | std::shared_ptr<FileSystem> GetEmptyFileSystem() override { return slow_fs_; } |
nothing calls this directly
no test coverage detected