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/ITestSuiteLoader.cs')
-rw-r--r--mcs/nunit/src/NUnitCore/ITestSuiteLoader.cs30
1 files changed, 15 insertions, 15 deletions
diff --git a/mcs/nunit/src/NUnitCore/ITestSuiteLoader.cs b/mcs/nunit/src/NUnitCore/ITestSuiteLoader.cs
index f7bc5bdc1f0..71f7da29f6e 100644
--- a/mcs/nunit/src/NUnitCore/ITestSuiteLoader.cs
+++ b/mcs/nunit/src/NUnitCore/ITestSuiteLoader.cs
@@ -1,17 +1,17 @@
-namespace NUnit.Runner {
+namespace NUnit.Runner
+{
+ using System;
- using System;
-
- /// <summary>An interface to define how a test suite should be
- /// loaded.</summary>
- public interface ITestSuiteLoader {
- /// <summary>
- ///
- /// </summary>
- Type Load(string suiteClassName);
- /// <summary>
- ///
- /// </summary>
- Type Reload(Type aType);
- }
+ /// <summary>
+ /// An interface to define how a test suite should be loaded.
+ /// </summary>
+ [Obsolete("Use ILoader")]
+ public interface ITestSuiteLoader
+ {
+ /// <summary>
+ ///
+ /// </summary>
+ Type Load(string suiteClassName);
+ //Type Reload(Type aType);
+ }
}