| 514 | void SetUp() { builder_.reset(new BuilderType(pool_)); } |
| 515 | |
| 516 | void Done() { |
| 517 | std::shared_ptr<Array> out; |
| 518 | FinishAndCheckPadding(builder_.get(), &out); |
| 519 | |
| 520 | result_ = std::dynamic_pointer_cast<ArrayType>(out); |
| 521 | ASSERT_OK(result_->ValidateFull()); |
| 522 | } |
| 523 | |
| 524 | void TestScalarAppend() { |
| 525 | std::vector<std::string> strings = {"", "bb", "a", "", "ccc"}; |
nothing calls this directly
no test coverage detected