AK.F1.Timing.Serialization.PropertyIdAttributeTest.ctor_should_set_the_id_property C# (CSharp) Méthode

ctor_should_set_the_id_property() private méthode

private ctor_should_set_the_id_property ( ) : void
Résultat void
        public void ctor_should_set_the_id_property()
        {
            var attribute = new PropertyIdAttribute(10);

            Assert.Equal(10, attribute.Id);
        }
PropertyIdAttributeTest