public MFTestResults Arith_arith064_Test()
 {
     Log.Comment("Section 7.7");
     if (Arith_TestClass_arith064.testMethod())
     {
         return(MFTestResults.Pass);
     }
     return(MFTestResults.Fail);
 }
            public static int Main_old()
            {
                Arith_TestClass_arith064 MC = new Arith_TestClass_arith064();
                string TestString1          = "bar";

                if ((MC + TestString1) == "foobar")
                {
                    return(0);
                }
                else
                {
                    return(1);
                }
            }
예제 #3
0
 public static int Main_old()
 {
     Arith_TestClass_arith064 MC = new Arith_TestClass_arith064();
     string TestString1 = "bar";
     if ((MC + TestString1) == "foobar")
     {
         return 0;
     }
     else
     {
         return 1;
     }
 }
 public void Arith_arith064_Test()
 {
     OutputHelper.WriteLine("Section 7.7");
     Assert.True(Arith_TestClass_arith064.testMethod());
 }