| 524 | void SetUp() { builder_.reset(new BuilderType(pool_)); } |
| 525 | |
| 526 | void Done() { |
| 527 | std::shared_ptr<Array> out; |
| 528 | FinishAndCheckPadding(builder_.get(), &out); |
| 529 | |
| 530 | result_ = std::dynamic_pointer_cast<ArrayType>(out); |
| 531 | ASSERT_OK(result_->ValidateFull()); |
| 532 | } |
| 533 | |
| 534 | void TestScalarAppend() { |
| 535 | std::vector<std::string> strings = {"", "bb", "a", "", "ccc"}; |
nothing calls this directly
no test coverage detected