public void UpdateNullPresenterWillThrow(CampaignPresenter sut)
 {
     // Fixture setup
     // Exercise system and verify outcome
     Assert.Throws<ArgumentNullException>(() =>
         sut.Update(null));
     // Teardown
 }
 public void UpdateNullPresenterWillThrow(CampaignPresenter sut)
 {
     // Fixture setup
     // Exercise system and verify outcome
     Assert.Throws <ArgumentNullException>(() =>
                                           sut.Update(null));
     // Teardown
 }