| 548 | class TestPipeIO : public ::testing::Test { |
| 549 | public: |
| 550 | void MakePipe() { |
| 551 | ASSERT_OK_AND_ASSIGN(pipe_, CreatePipe()); |
| 552 | ASSERT_GE(pipe_.rfd.fd(), 0); |
| 553 | ASSERT_GE(pipe_.rfd.fd(), 0); |
| 554 | } |
| 555 | void ClosePipe() { |
| 556 | ASSERT_OK(pipe_.rfd.Close()); |
| 557 | ASSERT_OK(pipe_.wfd.Close()); |
nothing calls this directly
no test coverage detected