4 changed files with 67 additions and 5 deletions
@ -0,0 +1,18 @@
@@ -0,0 +1,18 @@
|
||||
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
|
||||
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||
|
||||
using System; |
||||
|
||||
namespace PackageManagement.Tests.Helpers |
||||
{ |
||||
public class ExceptionThrowingProcessPackageAction : TestableProcessPackageAction |
||||
{ |
||||
public Exception ExceptionToThrowInExecuteCore = |
||||
new Exception("Error"); |
||||
|
||||
protected override void ExecuteCore() |
||||
{ |
||||
throw ExceptionToThrowInExecuteCore; |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue