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