| 2989 | StartsWith( NSString* substr ) : StringHolder( substr ){} |
| 2990 | |
| 2991 | bool match( NSString* str ) const override { |
| 2992 | return (str != nil || m_substr == nil ) && |
| 2993 | [str rangeOfString:m_substr].location == 0; |
| 2994 | } |
| 2995 | |
| 2996 | std::string describe() const override { |
| 2997 | return "starts with: " + Catch::Detail::stringify( m_substr ); |
nothing calls this directly
no outgoing calls
no test coverage detected