| 555 | class TestPipeIO : public ::testing::Test { |
| 556 | public: |
| 557 | void MakePipe() { |
| 558 | ASSERT_OK_AND_ASSIGN(pipe_, CreatePipe()); |
| 559 | ASSERT_GE(pipe_.rfd.fd(), 0); |
| 560 | ASSERT_GE(pipe_.rfd.fd(), 0); |
| 561 | } |
| 562 | void ClosePipe() { |
| 563 | ASSERT_OK(pipe_.rfd.Close()); |
| 564 | ASSERT_OK(pipe_.wfd.Close()); |
nothing calls this directly
no test coverage detected