Esempio n. 1
0
 public void TestTableSelectedItemMethodOneArgument()
 {
     Table table = new Table("table").AddItem(new Cell(1, 1));
     table.SelectedItemEvalMethod("query_base");
 }
Esempio n. 2
0
 public void TestTableSelectedItemEvalMethodException()
 {
     Table table = new Table("table");
     table.SelectedItemEvalMethod();
 }
Esempio n. 3
0
 public void TestTableSelectedItemMethodNoArguments()
 {
     Table table = new Table("table").AddItem(new Cell(1, 1));
     table.SelectedItemEvalMethod();
 }
Esempio n. 4
0
 public void TestTableSelectedItemEvalMethod()
 {
     Table table = new Table("table").AddItem(new Cell(1,1));
     Assert.AreEqual("\r\nvar tableCell = query_base.createTableCell(1,1);\r\ncomponent.selectCell(tableCell);",
         table.SelectedItemEvalMethod("query_base", "component"));
 }