| 20 | test_env::TestEnvironmentState env_state_; |
| 21 | |
| 22 | void SetUp() override { |
| 23 | env_state_.InitializeCores(1); |
| 24 | env_state_.SetCurrentThreadEnvironment(); |
| 25 | env_state_.BindThreadToCore(std::this_thread::get_id(), 0); |
| 26 | auto result = ramfs_.Mount(nullptr); |
| 27 | EXPECT_TRUE(result.has_value()); |
| 28 | } |
| 29 | |
| 30 | void TearDown() override { |
| 31 | (void)ramfs_.Unmount(); |
nothing calls this directly
no test coverage detected