AK.F1.Timing.Serialization.PropertyDescriptorCollectionTest.get_by_id_returns_null_if_no_property_exists_with_specified_id C# (CSharp) Method

get_by_id_returns_null_if_no_property_exists_with_specified_id() private method

        public void get_by_id_returns_null_if_no_property_exists_with_specified_id()
        {
            var collection = new PropertyDescriptorCollection(new PropertyDescriptor[0]);

            Assert.Null(collection.GetById(5));
        }