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.Data/Test/System.Data/AllTests.cs')
-rw-r--r--mcs/class/System.Data/Test/System.Data/AllTests.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/mcs/class/System.Data/Test/System.Data/AllTests.cs b/mcs/class/System.Data/Test/System.Data/AllTests.cs
deleted file mode 100644
index bd607633bf6..00000000000
--- a/mcs/class/System.Data/Test/System.Data/AllTests.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-// MonoTests.System.Data.AllTests.cs
-//
-// Author:
-// Rodrigo Moya <rodrigo@ximian.com>
-//
-// (C) Copyright 2002 Rodrigo Moya
-//
-
-using NUnit.Framework;
-
-namespace MonoTests.System.Data
-{
- /// <summary>
- /// Combines all unit tests for the System.Data.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 (new TestSuite (typeof (DataColumnTest)));
- return suite;
- }
- }
- }
-}