CanRemove() public method

public CanRemove ( ) : bool
return bool
Example #1
0
 public void FindRecordsTO_CanRemove_SearchTypeEmptyAndSearchTypeWithData_ReturnFalse()
 {
     //------------Setup for test--------------------------
     var findRecordsTO = new FindRecordsTO { SearchType = string.Empty, SearchCriteria = "Data" };
     //------------Execute Test---------------------------
     Assert.IsFalse(findRecordsTO.CanRemove());
     //------------Assert Results-------------------------
 }