| 49 | } |
| 50 | |
| 51 | std::shared_ptr<Array> convertArray(const std::shared_ptr<Array>& original_array, |
| 52 | CDataType c_type) { |
| 53 | auto converter = util::GetConverter(original_array->type_id(), c_type); |
| 54 | return converter(original_array); |
| 55 | } |
| 56 | |
| 57 | void TestArrayConversion(const std::vector<std::string>& input, |
| 58 | const std::shared_ptr<Array>& expected_array, CDataType c_type, |
no test coverage detected