| 61 | class TestBufferOutputStream : public ::testing::Test { |
| 62 | public: |
| 63 | void SetUp() { |
| 64 | ASSERT_OK_AND_ASSIGN(buffer_, AllocateResizableBuffer(0)); |
| 65 | stream_.reset(new BufferOutputStream(buffer_)); |
| 66 | } |
| 67 | |
| 68 | protected: |
| 69 | std::shared_ptr<ResizableBuffer> buffer_; |
nothing calls this directly
no test coverage detected