(t *testing.T)
| 51 | } |
| 52 | |
| 53 | func TestListifyString(t *testing.T) { |
| 54 | lst := listifyString([]byte("qwerty")) |
| 55 | if reflect.DeepEqual(lst, splitChars("qwerty")) != true { |
| 56 | t.Fatal("listifyString failure:", lst) |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | func TestSequenceMatcherRatio(t *testing.T) { |
| 61 | s := NewMatcher(splitChars("abcd"), splitChars("bcde")) |
nothing calls this directly
no test coverage detected