(expected string)
| 48 | } |
| 49 | |
| 50 | func exact(expected string) exactMatcher { |
| 51 | return exactMatcher{expected: expected} |
| 52 | } |
| 53 | |
| 54 | func regex(pattern string) regexMatcher { |
| 55 | return regexMatcher{regexp: regexp.MustCompile(pattern)} |
no outgoing calls
no test coverage detected
searching dependent graphs…