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