protected override void testScenario()
 {
     Function f = new Function("f", "x", "x");
     for (int i = 0; i <= base.iterNum; i++)
         f = new Function("f(x,y)=x+y");
     f.calculate(1, 2);
 }