| 2075 | using RunEndCType = typename RunEndType::c_type; |
| 2076 | |
| 2077 | void SetUp() override { |
| 2078 | run_end_type_ = std::make_shared<RunEndType>(); |
| 2079 | value_type_ = utf8(); |
| 2080 | type_.reset(new RunEndEncodedType(run_end_type_, value_type_)); |
| 2081 | |
| 2082 | alpha_ = MakeScalar("alpha"); |
| 2083 | beta_ = MakeScalar("beta"); |
| 2084 | } |
| 2085 | |
| 2086 | void TestBasics() { |
| 2087 | RunEndEncodedScalar scalar_alpha{alpha_, type_}; |
nothing calls this directly
no test coverage detected