public void ClassWithHashSet()
        {
            var expected = new TestClassWithHashSet();

            expected.Init();
            _serializer.Cycle(expected)
            .Should().BeEquivalentTo(expected);
        }
        public void ClassWithHashSet()
        {
            var obj = new TestClassWithHashSet();

            obj.Init();

            CheckSerializationAndDeserialization("ExtendedXmlSerializer.Tests.Legacy.Resources.TestClassWithHashSet.xml", obj);
            CheckCompatibilityWithDefaultSerializator(obj);
        }