示例#1
0
 public void ValueSimple11_Test()
 {
     OutputHelper.WriteLine(" Section 4.1");
     OutputHelper.WriteLine(" A simple type and the structure type it aliases are completely indistinguishable.");
     OutputHelper.WriteLine(" In other words, writing the reserved work byte is exactly the same as writing ");
     OutputHelper.WriteLine(" System.Byte, and writing System.Int32 is exactly the same as writing the reserved");
     OutputHelper.WriteLine(" word int.");
     ValueSimpleTestClass11.testMethod();
 }
示例#2
0
 public MFTestResults ValueSimple11_Test()
 {
     Log.Comment(" Section 4.1");
     Log.Comment(" A simple type and the structure type it aliases are completely indistinguishable.");
     Log.Comment(" In other words, writing the reserved work byte is exactly the same as writing ");
     Log.Comment(" System.Byte, and writing System.Int32 is exactly the same as writing the reserved");
     Log.Comment(" word int.");
     if (ValueSimpleTestClass11.testMethod())
     {
         return(MFTestResults.Pass);
     }
     return(MFTestResults.Fail);
 }