void WhenTheUpdateIsPrepared()
 {
     _exception = Run.CatchingException(() => _appUpdater.PrepareUpdate(_incorrectPackage));
 }
Esempio n. 2
0
 void WhenTheUpdateIsPrepared()
 {
     _exception = Run.CatchingException(() => _appUpdater.PrepareUpdate(_oldVersionPackage));
 }
Esempio n. 3
0
 void WhenTheUpdateIsPrepared()
 {
     _exception = Run.CatchingException(() => _appUpdater.PrepareUpdate(_currentVersionPacakge));
 }
 void WhenTheUpdateIsPrepared()
 {
     _preparedUpdate = _appUpdater.PrepareUpdate(_package);
 }
Esempio n. 5
0
 void WhenPrepareUpdateIsCalledWithoutProvidingAPackage()
 {
     _exception = Run.CatchingException(() => _appUpdater.PrepareUpdate(null));
 }