(exp string, to time.Duration)
| 141 | } |
| 142 | |
| 143 | func (l *testLog) WaitFor(exp string, to time.Duration) error { |
| 144 | return l.WaitForN(exp, 1, to) |
| 145 | } |
| 146 | |
| 147 | func (l *testLog) Count(exp string) int { |
| 148 | return strings.Count(l.String(), exp) |
no test coverage detected