equalStringMatcher matches a string exactly and support case insensitive.
| 813 | |
| 814 | // equalStringMatcher matches a string exactly and support case insensitive. |
| 815 | type equalStringMatcher struct { |
| 816 | s string |
| 817 | caseSensitive bool |
| 818 | } |
| 819 | |
| 820 | func (m *equalStringMatcher) Matches(s string) bool { |
| 821 | if m.caseSensitive { |
nothing calls this directly
no outgoing calls
no test coverage detected