测试文件描述符表
| 151 | |
| 152 | // 测试文件描述符表 |
| 153 | class FdTableTest : public BaseEnvTest { |
| 154 | protected: |
| 155 | FileDescriptorTable* fd_table_; |
| 156 | |
| 157 | void SetUp() override { |
| 158 | BaseEnvTest::SetUp(); |
| 159 | fd_table_ = new FileDescriptorTable(); |
| 160 | } |
| 161 | |
| 162 | void TearDown() override { |
| 163 | delete fd_table_; |
| 164 | BaseEnvTest::TearDown(); |
| 165 | } |
| 166 | }; |
| 167 | |
| 168 | TEST_F(FdTableTest, AllocAndFree) { |
| 169 | // 创建模拟文件 |
nothing calls this directly
no outgoing calls
no test coverage detected