| 58 | } |
| 59 | |
| 60 | void assert_equal_failed_impl(const std::string& a, const std::string& b) { |
| 61 | std::cerr << "assertion failed. expected [" << a << "] == [" << b << "]" << std::endl; |
| 62 | std::abort(); |
| 63 | } |
| 64 | |
| 65 | void assert_not_equal_failed_impl(const std::string& a, const std::string& b) { |
| 66 | std::cerr << "assertion failed. expected [" << a << "] =/= [" << b << "]" << std::endl; |