(t *testing.T)
| 31 | } |
| 32 | |
| 33 | func TestSequenceMatcherRatio(t *testing.T) { |
| 34 | s := NewMatcher(splitChars("abcd"), splitChars("bcde")) |
| 35 | assertEqual(t, s.Ratio(), 0.75) |
| 36 | assertEqual(t, s.QuickRatio(), 0.75) |
| 37 | assertEqual(t, s.RealQuickRatio(), 1.0) |
| 38 | } |
| 39 | |
| 40 | func TestGetOptCodes(t *testing.T) { |
| 41 | a := "qabxcd" |
nothing calls this directly
no test coverage detected
searching dependent graphs…