| 78 | } |
| 79 | |
| 80 | void assert_bigger_equal_failed_impl(const std::string& a, const std::string& b) { |
| 81 | std::cerr << "assertion failed. expected [" << a << "] >= [" << b << "]" << std::endl; |
| 82 | std::abort(); |
| 83 | } |
| 84 | |
| 85 | void assert_smaller_equal_failed_impl(const std::string& a, const std::string& b) { |
| 86 | std::cerr << "assertion failed. expected [" << a << "] <= [" << b << "]" << std::endl; |
no outgoing calls
no test coverage detected