(t *testing.T)
| 304 | } |
| 305 | |
| 306 | func TestSFBugsRatioForNullSeqn(t *testing.T) { |
| 307 | sm := NewMatcher(nil, nil) |
| 308 | assertEqual(t, sm.Ratio(), 1.0) |
| 309 | assertEqual(t, sm.QuickRatio(), 1.0) |
| 310 | assertEqual(t, sm.RealQuickRatio(), 1.0) |
| 311 | } |
| 312 | |
| 313 | func TestSFBugsComparingEmptyLists(t *testing.T) { |
| 314 | groups := NewMatcher(nil, nil).GetGroupedOpCodes(-1) |
nothing calls this directly
no test coverage detected