| 78 | |
| 79 | template<typename T> |
| 80 | void VerifyToString(const T& decimal, int precision, int scale, const string& expected) { |
| 81 | EXPECT_EQ(decimal.ToString(precision, scale), expected); |
| 82 | } |
| 83 | |
| 84 | void StringToAllDecimals(const string& s, int precision, int scale, int32_t val, |
| 85 | StringParser::ParseResult result) { |