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: 3186ee57e8ecd18db4c7e8011c6913965e63c663 (plain)
1
2
3
4
5
6
7
8
9
10
11
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();
  }
}