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:
authorMartin Baulig <martin@novell.com>2002-02-27 12:38:21 +0300
committerMartin Baulig <martin@novell.com>2002-02-27 12:38:21 +0300
commit7f0542b133e5f1eee15f337e0263c14406091a7e (patch)
tree66b127d66c5356f2e6c8b5036846273cad41536a /mcs/nunit/src/NUnitCore/ITestSuiteLoader.cs
parent9f187b5dd0b323582e2aec7c7f17f7a1cd4ba07b (diff)
Importing NUnit 1.11.NUNIT_1_11
svn path=/branches/NUNIT/mcs/; revision=2713
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);
+ }
}