System.Tests.GetCustomAttribute.customAttributeCount C# (CSharp) 메소드

customAttributeCount() 개인적인 메소드

private customAttributeCount ( ) : void
리턴 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]