public void Overlaps_NullOther_ArgumentNullException() => Assert.Catch <ArgumentNullException>(() => _filledIntSet.Overlaps(null));
public bool Overlaps_IntValues_CorrectResult(int[] firstSet, int[] secondset) { AddValues(firstSet); return(_intSet.Overlaps(secondset)); }