public MFTestResults NS_attribute_01_Test()
 {
     Log.Comment("Section 9.1 Compilation Units");
     Log.Comment("Verify that the CLSCompliant attribute is allowed at the assembly level in a comp. unit");
     if (NS_TestClass_attribute_01.testMethod())
     {
         return(MFTestResults.Pass);
     }
     return(MFTestResults.Fail);
 }
Example #2
0
 public void NS_attribute_01_Test()
 {
     OutputHelper.WriteLine("Section 9.1 Compilation Units");
     OutputHelper.WriteLine("Verify that the CLSCompliant attribute is allowed at the assembly level in a comp. unit");
     Assert.True(NS_TestClass_attribute_01.testMethod());
 }