Exemplo n.º 1
0
 public void TestTreeSelectedRowsEvalMethodException()
 {
     Tree tree = new Tree("tree");
     tree.SelectedRowsEvalMethod();
 }
Exemplo n.º 2
0
 public void TestTreeSelectedRowsEvalMethod()
 {
     Tree tree = new Tree("tree").AddRows(1, 2, 3, 4);
     Assert.AreEqual("query_base.selectRows([1,2,3,4]);", tree.SelectedRowsEvalMethod("query_base"));
 }