Example #1
0
 public void TestTableSelectedItemException()
 {
     Table table = new Table("table");
     table.SelectedItem();
 }
Example #2
0
 public void TestTableSelectedItem()
 {
     Table table = new Table("table").AddItem(new Cell(1,2));
     Assert.AreEqual("1,2", table.SelectedItem());
 }