Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IProtectable.cs « NUnitCore « src « nunit « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad86136602f535af7feb3a77dc13ea8d12ec40ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace NUnit.Framework 
{
	/// <summary>
	/// An <c>IProtectable</c> can be run and can throw an Exception.
	/// </summary>
	/// <seealso cref="TestResult"/>
	public interface IProtectable 
	{
		/// <summary>Run the the following method protected.</summary>
		void Protect();
	}
}