(t *testing.T)
| 196 | } |
| 197 | |
| 198 | func TestSFBugsRatioForNullSeqn(t *testing.T) { |
| 199 | sm := NewMatcher(nil, nil) |
| 200 | assertEqual(t, sm.Ratio(), 1.0) |
| 201 | assertEqual(t, sm.QuickRatio(), 1.0) |
| 202 | assertEqual(t, sm.RealQuickRatio(), 1.0) |
| 203 | } |
| 204 | |
| 205 | func TestSFBugsComparingEmptyLists(t *testing.T) { |
| 206 | groups := NewMatcher(nil, nil).GetGroupedOpCodes(-1) |
nothing calls this directly
no test coverage detected