| 262 | } |
| 263 | |
| 264 | TEST_F(ConcatenateTest, NullType) { |
| 265 | Check([](int32_t size, double null_probability, std::shared_ptr<Array>* out) { |
| 266 | *out = std::make_shared<NullArray>(size); |
| 267 | }); |
| 268 | } |
| 269 | |
| 270 | TEST_F(ConcatenateTest, StringType) { |
| 271 | Check([this](int32_t size, double null_probability, std::shared_ptr<Array>* out) { |
nothing calls this directly
no test coverage detected