| 95 | |
| 96 | template <typename... Args> |
| 97 | std::string JSONArray(Args&&... args) { |
| 98 | std::stringstream ss; |
| 99 | ss << "["; |
| 100 | JSONArrayInternal(&ss, std::forward<Args>(args)...); |
| 101 | ss << "]"; |
| 102 | return ss.str(); |
| 103 | } |
| 104 | |
| 105 | template <typename T, typename C_TYPE = typename T::c_type> |
| 106 | void AssertJSONArray(const std::shared_ptr<DataType>& type, const std::string& json, |
no test coverage detected