Tests.ProductTest.ProductBasicSerializationTest C# (CSharp) Метод

ProductBasicSerializationTest() приватный Метод

private ProductBasicSerializationTest ( ) : void
Результат void
        public void ProductBasicSerializationTest()
        {
            var thing = SchemaFactory.Create(Schema.Product);
            var str = thing.Stringify();

            var newThing = SchemaFactory.Parse(str);
            Assert.IsNotNull(newThing);
        }