public int[] ExpectWith_IntValues_ElementsFromSecondSetWasRemoved(int[] set, int[] other)
        {
            AddValues(set);

            _intSet.ExceptWith(other);

            return(_intSet.ToArray());
        }