Exemplo n.º 1
0
        public void test_2()
        {
            int a = a1 + a2;

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

            DFunc.log("The result is " + a);
            DFunc.returnPASS();
        }
Exemplo n.º 3
0
 public void test_2_undo()
 {
     DFunc.log("Undo");
 }