예제 #1
0
        public void test_2()
        {
            int a = a1 + a2;

            DFunc.log("The result is changed to " + a);
            DFunc.returnFAIL();
        }
예제 #2
0
        public void test_1()
        {
            a1 = 5;
            a2 = 6;
            int a = a1 + a2;

            DFunc.log("The result is " + a);
            DFunc.returnPASS();
        }
예제 #3
0
 public void test_2_undo()
 {
     DFunc.log("Undo");
 }