| 81 | class TestPrimitiveWriter : public PrimitiveTypedTest<TestType> { |
| 82 | public: |
| 83 | void SetUp() { |
| 84 | this->SetupValuesOut(SMALL_SIZE); |
| 85 | writer_properties_ = default_writer_properties(); |
| 86 | definition_levels_out_.resize(SMALL_SIZE); |
| 87 | repetition_levels_out_.resize(SMALL_SIZE); |
| 88 | |
| 89 | this->SetUpSchema(Repetition::REQUIRED); |
| 90 | |
| 91 | descr_ = this->schema_.Column(0); |
| 92 | } |
| 93 | |
| 94 | Type::type type_num() { return TestType::type_num; } |
| 95 |
nothing calls this directly
no test coverage detected