public void TestTableSelectedItemsEvalMethodException() { Table table = new Table("table"); table.SelectedItemsEvalMethod(); }
public void TestTableSelectedItemsEvalMethod() { Table table = new Table("table").AddItems(new object [] { new Cell(1,1), new Cell(2,2)} ); Assert.AreEqual("\r\nvar tableCells = query_base.createTableCells([\"1,1\",\"2,2\"]);\r\ncomponent.selectCells(tableCells);", table.SelectedItemsEvalMethod("query_base", "component")); }