public void SetEquals_NullOther_ArgumentNullException()
 => Assert.Catch <ArgumentNullException>(() => _filledIntSet.SetEquals(null));
        public bool SetEquals_IntValues_CorrectResult(int[] firstSet, int[] secondset)
        {
            AddValues(firstSet);

            return(_intSet.SetEquals(secondset));
        }