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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/nunit/src/NUnitCore/ITest.cs')
-rw-r--r--mcs/nunit/src/NUnitCore/ITest.cs30
1 files changed, 17 insertions, 13 deletions
diff --git a/mcs/nunit/src/NUnitCore/ITest.cs b/mcs/nunit/src/NUnitCore/ITest.cs
index 91ee9826715..098f4c0f23f 100644
--- a/mcs/nunit/src/NUnitCore/ITest.cs
+++ b/mcs/nunit/src/NUnitCore/ITest.cs
@@ -1,14 +1,18 @@
-namespace NUnit.Framework {
-
- /// <summary>An <c>ITest</c> can be run and collect its results.</summary>
- /// <seealso cref="TestResult"/>
- public interface ITest {
- /// <summary>Counts the number of test cases that will be run by this
- /// test.</summary>
- int CountTestCases { get; }
-
- /// <summary>Runs a test and collects its result in a
- /// <see cref="TestResult"/> instance.</summary>
- void Run(TestResult result);
- }
+namespace NUnit.Framework
+{
+ /// <summary>An <c>ITest</c> can be run and collect its results.</summary>
+ /// <seealso cref="TestResult"/>
+ public interface ITest
+ {
+ /// <summary>
+ /// Counts the number of test cases that will be run by this test.
+ /// </summary>
+ int CountTestCases { get; }
+ /// <summary>
+ /// Runs a test and collects its result in a
+ /// <see cref="TestResult"/> instance.
+ /// </summary>
+ /// <param name="result"></param>
+ void Run(TestResult result);
+ }
}