public void CanNotRemoveNotAddedCustomer() { CustomerBook aCustomerBook = new CustomerBook(); CheckInAndCheckOutCustomersForTesting someTest = new CheckInAndCheckOutCustomersForTesting(); CatchExceptionsForTesting catchingATest = new CatchExceptionsForTesting(); CustomerBookTestingExceptionCatcher.TryCustomerBookActionForTesting(aCustomerBook, someTest.RemoveJonhLennonFromCustomerBook, catchingATest.CatchRemovingNotAddedCustomer); }
public void CanNotAddACustomerWithEmptyName() { CustomerBook aCustomerBook = new CustomerBook(); CheckInAndCheckOutCustomersForTesting someTest = new CheckInAndCheckOutCustomersForTesting(); CatchExceptionsForTesting catchingATest = new CatchExceptionsForTesting(); CustomerBookTestingExceptionCatcher.TryCustomerBookActionForTesting(aCustomerBook, someTest.AddNoNamedToCustomerBook, catchingATest.CatchAddingACustomerWithEmptyName); }