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.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/mcs/nunit/src/NUnitCore/ITestSuiteLoader.cs b/mcs/nunit/src/NUnitCore/ITestSuiteLoader.cs
deleted file mode 100644
index 71f7da29f6e..00000000000
--- a/mcs/nunit/src/NUnitCore/ITestSuiteLoader.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-namespace NUnit.Runner
-{
- using System;
-
- /// <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);
- }
-}