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/class/System/Test/AllTests.cs')
-rw-r--r--mcs/class/System/Test/AllTests.cs33
1 files changed, 0 insertions, 33 deletions
diff --git a/mcs/class/System/Test/AllTests.cs b/mcs/class/System/Test/AllTests.cs
deleted file mode 100644
index 923916f47e6..00000000000
--- a/mcs/class/System/Test/AllTests.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-// MonoTests.AllTests, System.dll
-//
-// Author:
-// Mario Martinez (mariom925@home.com)
-//
-// (C) Ximian, Inc. http://www.ximian.com
-//
-
-using NUnit.Framework;
-namespace MonoTests
-{
- /// <summary>
- /// Combines all unit tests for the System.dll assembly
- /// into one test suite.
- /// </summary>
- public class AllTests : TestCase
- {
- public AllTests(string name) : base(name) {}
-
- public static ITest Suite {
- get {
- TestSuite suite = new TestSuite();
- suite.AddTest (System.AllTests.Suite);
- suite.AddTest (System.Collections.Specialized.AllTests.Suite);
- suite.AddTest (System.Diagnostics.AllTests.Suite);
- suite.AddTest (System.Net.AllTests.Suite);
- suite.AddTest (System.Net.Sockets.AllTests.Suite);
- suite.AddTest (System.Text.RegularExpressions.AllTests.Suite);
- return suite;
- }
- }
- }
-}