| 41 | |
| 42 | template <class T, class U> |
| 43 | void assert_equal(const T& want, const U& got, const std::string& what) { |
| 44 | if (!(want == got)) |
| 45 | throw fail(MSG(what << " " << want << " != " << got)); |
| 46 | } |
| 47 | |
| 48 | template <class T> |
| 49 | inline void assert_equalish(T want, T got, T delta, const std::string& what) |
no test coverage detected