public static void IsExceptWith_Test68()
        {
            HashSet <ValueItem>     hashSet;
            IEnumerable <ValueItem> other;

            SetCollectionDuplicateItemTests.SetupTest11(out hashSet, out other);
            hashSet.ExceptWith(other);

            HashSetTestSupport <ValueItem> .VerifyHashSet(hashSet, new ValueItem[0], hashSet.Comparer);
        }
        public static void IsIntersectWith_Test69()
        {
            HashSet <ValueItem>     hashSet;
            IEnumerable <ValueItem> other;
            ValueItem items2 = new ValueItem(-4, -4);

            SetCollectionDuplicateItemTests.SetupTest12(out hashSet, out other);
            hashSet.IntersectWith(other);

            HashSetTestSupport <ValueItem> .VerifyHashSet(hashSet, new ValueItem[] { items2 }, hashSet.Comparer);
        }
        public static void IsExceptWith_Test59()
        {
            HashSet <ValueItem>     hashSet;
            IEnumerable <ValueItem> other;
            ValueItem item5 = new ValueItem(101, 101);

            SetCollectionDuplicateItemTests.SetupTest2(out hashSet, out other);
            hashSet.ExceptWith(other);

            HashSetTestSupport <ValueItem> .VerifyHashSet(hashSet, new ValueItem[] { item5 }, hashSet.Comparer);
        }
        public static void IsExceptWith_Test64()
        {
            HashSet <ValueItem>     hashSet;
            IEnumerable <ValueItem> other;
            ValueItem items1 = new ValueItem(-34, 5);
            ValueItem items3 = new ValueItem(-9999, 2);

            SetCollectionDuplicateItemTests.SetupTest7(out hashSet, out other);
            hashSet.ExceptWith(other);

            HashSetTestSupport <ValueItem> .VerifyHashSet(hashSet, new ValueItem[] { items1, items3 }, hashSet.Comparer);
        }
        public static void IsIntersectWith_Test65()
        {
            HashSet <ValueItem>     hashSet;
            IEnumerable <ValueItem> other;
            ValueItem itemo1 = new ValueItem(34, -5);
            ValueItem itemo2 = new ValueItem(4, 4);
            ValueItem itemo3 = new ValueItem(9999, -2);
            ValueItem itemo4 = new ValueItem(99, -2);

            SetCollectionDuplicateItemTests.SetupTest8(out hashSet, out other);
            hashSet.IntersectWith(other);

            HashSetTestSupport <ValueItem> .VerifyHashSet(hashSet, new ValueItem[] { itemo1, itemo2, itemo3, itemo4 }, hashSet.Comparer);
        }