()
| 16 | var la *LineArray |
| 17 | |
| 18 | func init() { |
| 19 | reader := strings.NewReader(unicode_txt) |
| 20 | la = NewLineArray(uint64(len(unicode_txt)), FFAuto, reader) |
| 21 | } |
| 22 | |
| 23 | func TestSplit(t *testing.T) { |
| 24 | la.insert(Loc{17, 1}, []byte{'\n'}) |
nothing calls this directly
no test coverage detected