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/ITestLoader.cs')
-rwxr-xr-xmcs/nunit/src/NUnitCore/ITestLoader.cs58
1 files changed, 0 insertions, 58 deletions
diff --git a/mcs/nunit/src/NUnitCore/ITestLoader.cs b/mcs/nunit/src/NUnitCore/ITestLoader.cs
deleted file mode 100755
index ed0a08ed73c..00000000000
--- a/mcs/nunit/src/NUnitCore/ITestLoader.cs
+++ /dev/null
@@ -1,58 +0,0 @@
-namespace NUnit.Runner
-{
- using System;
- using NUnit.Framework;
- using System.Runtime.Serialization;
-
- /// <summary>
- /// Basic contract governing loading of tests
- /// </summary>
- public interface ITestLoader
- {
- /// <summary>
- /// Loads an instance of the test class specified by the name.
- /// Loadable in most cases will be an assembly qualified name.
- ///
- /// Other loaders could dynamically construct a test case from
- /// an XML file or a database record.
- /// </summary>
- ITest LoadTest(string loadableName);
-
- /// <summary>
- /// Return the name used by the loader to load an instance
- /// of the supplied test
- /// </summary>
- /// <param name="test"></param>
- /// <returns></returns>
- string GetLoadName(ITest test);
- }
-
- /// <summary>
- /// Error thrown during assembly and class loading problems
- /// </summary>
- [Serializable]
- public class LoaderException : NUnitException
- {
- /// <summary>
- /// Serialization Constructor
- /// </summary>
- protected LoaderException(SerializationInfo info,
- StreamingContext context) : base(info,context){}
- /// <summary>
- /// Standard constructor
- /// </summary>
- /// <param name="message">The error message that explains
- /// the reason for the exception</param>
- /// <param name="innerException">The exception that caused the
- /// current exception</param>
- public LoaderException(string message, Exception innerException) :
- base(message, innerException) {}
- /// <summary>
- /// Standard constructor
- /// </summary>
- /// <param name="message">The error message that explains
- /// the reason for the exception</param>
- public LoaderException(string message) :
- base(message) {}
- }
-} \ No newline at end of file