public void ConstructorShouldThrowExceptionWhenBookingsServicesIsNull() { var presenter = new BookingsManagementPresenter(this.bookingsView.Object, null); }
public void TestInitialize() { this.bookingsView = TestObjectFactoryViews.GetBookingsManagementView(); this.bookingsServices = TestObjectFactoryServices.GetBookingsServices(); this.presenter = new BookingsManagementPresenter(this.bookingsView.Object, this.bookingsServices.Object); }