| 39 | class TestChunkedArray : public ::testing::Test { |
| 40 | protected: |
| 41 | virtual void Construct() { |
| 42 | one_ = std::make_shared<ChunkedArray>(arrays_one_); |
| 43 | if (!arrays_another_.empty()) { |
| 44 | another_ = std::make_shared<ChunkedArray>(arrays_another_); |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | ArrayVector arrays_one_; |
| 49 | ArrayVector arrays_another_; |