| 84 | using BuilderType = typename TypeTraits<TypeClass>::BuilderType; |
| 85 | |
| 86 | void SetUp() { |
| 87 | chars_ = {'a', 'b', 'b', 'c', 'c', 'c'}; |
| 88 | offsets_ = {0, 1, 1, 1, 3, 6}; |
| 89 | valid_bytes_ = {1, 1, 0, 1, 1}; |
| 90 | expected_ = {"a", "", "", "bb", "ccc"}; |
| 91 | |
| 92 | MakeArray(); |
| 93 | } |
| 94 | |
| 95 | void MakeArray() { |
| 96 | length_ = static_cast<int64_t>(offsets_.size()) - 1; |
nothing calls this directly
no test coverage detected