(t *testing.T)
| 266 | } |
| 267 | |
| 268 | func TestSFBugsRatioForNullSeqn(t *testing.T) { |
| 269 | sm := NewMatcher(nil, nil) |
| 270 | assertEqual(t, sm.Ratio(), 1.0) |
| 271 | assertEqual(t, sm.QuickRatio(), 1.0) |
| 272 | assertEqual(t, sm.RealQuickRatio(), 1.0) |
| 273 | } |
| 274 | |
| 275 | func TestSFBugsComparingEmptyLists(t *testing.T) { |
| 276 | groups := NewMatcher(nil, nil).GetGroupedOpCodes(-1) |
nothing calls this directly
no test coverage detected