public MFTestResults Lexical_preproc_21_Test()
 {
     Log.Comment("Section 2.3 Preprocessing");
     Log.Comment("Verify the == operator works with/without parentheses");
     if (Lexical_TestClass_preproc_21.testMethod())
     {
         return(MFTestResults.Pass);
     }
     return(MFTestResults.Fail);
 }
 public void Lexical_preproc_21_Test()
 {
     OutputHelper.WriteLine("Section 2.3 Preprocessing");
     OutputHelper.WriteLine("Verify the == operator works with/without parentheses");
     Assert.True(Lexical_TestClass_preproc_21.testMethod());
 }