| 83 | class VfsTest : public ::testing::Test { |
| 84 | protected: |
| 85 | void SetUp() override { |
| 86 | env_state_.InitializeCores(1); |
| 87 | env_state_.SetCurrentThreadEnvironment(); |
| 88 | env_state_.BindThreadToCore(std::this_thread::get_id(), 0); |
| 89 | auto result = vfs::Init(); |
| 90 | EXPECT_TRUE(result.has_value()); |
| 91 | } |
| 92 | |
| 93 | void TearDown() override { env_state_.ClearCurrentThreadEnvironment(); } |
| 94 |
nothing calls this directly
no test coverage detected