| 74 | |
| 75 | template <typename T> |
| 76 | void Check(const T& obj, const PrettyPrintOptions& options, std::string_view expected) { |
| 77 | std::string result; |
| 78 | ASSERT_OK(PrettyPrint(obj, options, &result)); |
| 79 | ASSERT_EQ(expected, result); |
| 80 | } |
| 81 | |
| 82 | template <typename TYPE, typename C_TYPE> |
| 83 | void CheckPrimitive(const std::shared_ptr<DataType>& type, |
no test coverage detected