public void DifferentTypeOfProperty()
        {
            var expected = new TestClassPropertyType();

            expected.Init();
            _serializer.Cycle(expected)
            .Should().BeEquivalentTo(expected);
        }
Exemple #2
0
        public void DifferentProperty()
        {
            var obj = new TestClassPropertyType();

            obj.Init();

            CheckCompatibilityWithDefaultSerializator(obj);
        }