| 2994 | } |
| 2995 | |
| 2996 | std::string describe() const override { |
| 2997 | return "starts with: " + Catch::Detail::stringify( m_substr ); |
| 2998 | } |
| 2999 | }; |
| 3000 | struct EndsWith : StringHolder { |
| 3001 | EndsWith( NSString* substr ) : StringHolder( substr ){} |
nothing calls this directly
no test coverage detected