| 4076 | } |
| 4077 | |
| 4078 | std::string describe() const override { |
| 4079 | return "starts with: " + Catch::Detail::stringify( m_substr ); |
| 4080 | } |
| 4081 | }; |
| 4082 | struct EndsWith : StringHolder { |
| 4083 | EndsWith( NSString* substr ) : StringHolder( substr ){} |
nothing calls this directly
no test coverage detected