(s string, count int)
| 208 | } |
| 209 | |
| 210 | func rep(s string, count int) string { |
| 211 | return strings.Repeat(s, count) |
| 212 | } |
| 213 | |
| 214 | func TestWithAsciiOneInsert(t *testing.T) { |
| 215 | sm := NewMatcher(splitChars(rep("b", 100)), |
no outgoing calls
no test coverage detected