| 333 | public GenericFileSystemTest { |
| 334 | public: |
| 335 | void SetUp() override { |
| 336 | MakeFileSystem(); |
| 337 | SKIP_IF_NO_DRIVER(); |
| 338 | timestamp_ = |
| 339 | static_cast<int64_t>(std::chrono::time_point_cast<std::chrono::nanoseconds>( |
| 340 | std::chrono::steady_clock::now()) |
| 341 | .time_since_epoch() |
| 342 | .count()); |
| 343 | } |
| 344 | |
| 345 | protected: |
| 346 | bool allow_write_file_over_dir() const override { return true; } |
nothing calls this directly
no test coverage detected