Inheritance: System.Attribute
        public void ctor_should_set_the_id_property()
        {
            byte id = 10;
            var attribute = new TypeIdAttribute(id);

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