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