(ctx context.Context, str string)
| 146 | } |
| 147 | |
| 148 | func (e *Expecter) ExpectMatch(ctx context.Context, str string) string { |
| 149 | return e.expectMatcherFunc(ctx, str, strings.Contains) |
| 150 | } |
| 151 | |
| 152 | func (e *Expecter) ExpectRegexMatch(ctx context.Context, str string) string { |
| 153 | return e.expectMatcherFunc(ctx, str, func(src, pattern string) bool { |
nothing calls this directly
no test coverage detected