| 34 | |
| 35 | template<typename ...Args> |
| 36 | void test_for_expected( const std::string &expected, const char *const format, Args &&... args ) |
| 37 | { |
| 38 | CAPTURE( format ); |
| 39 | |
| 40 | const std::string result = throwing_string_format( format, std::forward<Args>( args )... ); |
| 41 | CHECK( result == expected ); |
| 42 | } |
| 43 | |
| 44 | template<typename ...Args> |
| 45 | void test_for_error( const char *const format, Args &&... args ) |
no test coverage detected