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.Configuration.Install/Test/AllTests.cs')
-rw-r--r--mcs/class/System.Configuration.Install/Test/AllTests.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/mcs/class/System.Configuration.Install/Test/AllTests.cs b/mcs/class/System.Configuration.Install/Test/AllTests.cs
deleted file mode 100644
index 8fe40431485..00000000000
--- a/mcs/class/System.Configuration.Install/Test/AllTests.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-//
-// MonoTests.AllTests.cs
-//
-// Author:
-// Gonzalo Paniagua Javier (gonzalo@ximian.com)
-//
-// (C) 2002 Ximian, Inc. (http://www.ximian.com)
-//
-
-using System;
-using NUnit.Framework;
-
-namespace MonoTests
-{
- public class AllTests : TestCase
- {
- public AllTests (string name) : base (name) {}
-
- public static ITest Suite
- {
- get {
- TestSuite suite = new TestSuite();
- suite.AddTest (System.Configuration.Install.AllTests.Suite);
- return suite;
- }
- }
- }
-}
-