System.Tests.GetCustomAttribute.customAttributeCount C# (CSharp) Method

customAttributeCount() private method

private customAttributeCount ( ) : void
return void
        public static void customAttributeCount()
        {
            List<CustomAttributeData> customAttributes =  typeof(GetCustomAttribute).Module.CustomAttributes.ToList();
            // [System.Security.UnverifiableCodeAttribute()]
            // [TestAttributes.FooAttribute()]
            // [TestAttributes.ComplicatedAttribute((Int32)1, Stuff = 2)]
            // [System.Diagnostics.DebuggableAttribute((Boolean)True, (Boolean)False)]
            Assert.Equal(4, customAttributes.Count);
        }
        [Fact]