Example #1
0
 public void TestTableSelectedItemMethodOneArgument()
 {
     Table table = new Table("table").AddItem(new Cell(1, 1));
     table.SelectedItemEvalMethod("query_base");
 }
Example #2
0
 public void TestTableSelectedItemEvalMethodException()
 {
     Table table = new Table("table");
     table.SelectedItemEvalMethod();
 }
Example #3
0
 public void TestTableSelectedItemMethodNoArguments()
 {
     Table table = new Table("table").AddItem(new Cell(1, 1));
     table.SelectedItemEvalMethod();
 }
Example #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"));
 }