public void IsSelected_DefaultSetup_IsTrue()
 {
     var model = new TableSingleSelectionModel();
     Assert.IsTrue(model.IsSelected(0, 0));
 }
 public void IsSelected_InvalidIndexes_ThrowsException(int row, int column)
 {
     var model = new TableSingleSelectionModel();
     Assert.Throws(typeof(ArgumentOutOfRangeException), delegate { model.IsSelected(row, column); });
 }