| 41 | |
| 42 | template <typename T> |
| 43 | void VerifyEquals(const DecimalValue<T>& t1, const DecimalValue<T>& t2) { |
| 44 | if (t1 != t2) { |
| 45 | LOG(ERROR) << t1 << " != " << t2; |
| 46 | EXPECT_TRUE(false); |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | template <typename T> |
| 51 | void VerifyParse(const string& s, int precision, int scale, bool round, |