(s string, count int)
| 218 | } |
| 219 | |
| 220 | func rep(s string, count int) string { |
| 221 | return strings.Repeat(s, count) |
| 222 | } |
| 223 | |
| 224 | func TestWithAsciiOneInsert(t *testing.T) { |
| 225 | sm := NewMatcher(splitChars(rep("b", 100)), |
no outgoing calls
no test coverage detected