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/corlib/Test/System.Text/AllTests.cs')
-rw-r--r--mcs/class/corlib/Test/System.Text/AllTests.cs30
1 files changed, 0 insertions, 30 deletions
diff --git a/mcs/class/corlib/Test/System.Text/AllTests.cs b/mcs/class/corlib/Test/System.Text/AllTests.cs
deleted file mode 100644
index 1069b3a3f91..00000000000
--- a/mcs/class/corlib/Test/System.Text/AllTests.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-// Testsuite.System.AllSystemTests.cs
-//
-// Mario Martinez (mariom925@home.om)
-//
-// (C) Ximian, Inc. http://www.ximian.com
-//
-
-using System;
-using NUnit.Framework;
-
-namespace MonoTests.System.Text {
- /// <summary>
- /// Combines all available unit tests 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(StringBuilderTest.Suite);
- suite.AddTest(ASCIIEncodingTest.Suite);
- return suite;
- }
- }
- }
-}
-