AK.F1.Timing.Serialization.TypeIdAttributeTest.ctor_should_set_the_id_property C# (CSharp) Method

ctor_should_set_the_id_property() private method

private ctor_should_set_the_id_property ( ) : void
return void
        public void ctor_should_set_the_id_property()
        {
            byte id = 10;
            var attribute = new TypeIdAttribute(id);

            Assert.Equal(id, attribute.Id);
        }