| 93 | |
| 94 | template<typename T> |
| 95 | void mingw_test( const char *const old_pattern, const char *const new_pattern, const T &value ) |
| 96 | { |
| 97 | CAPTURE( old_pattern ); |
| 98 | CAPTURE( new_pattern ); |
| 99 | std::string original_result = cata::string_formatter::raw_string_format( old_pattern, value ); |
| 100 | std::string new_result = throwing_string_format( new_pattern, value ); |
| 101 | CHECK( original_result == new_result ); |
| 102 | } |
| 103 | |
| 104 | TEST_CASE( "string_formatter" ) |
| 105 | { |
no test coverage detected