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:
authorDick Porter <dick@acm.org>2001-10-08 13:28:07 +0400
committerDick Porter <dick@acm.org>2001-10-08 13:28:07 +0400
commit4e11d3be1309cb3f00610f6c9ee4eccd104abb30 (patch)
treee5332a27e6f2f0518e20d3ae6cd35cae7bb4f8ab /mcs/class/System.XML/Test/AllTests.cs
parentd93fdec2b6612c0823556566acd763d90d8ba6b6 (diff)
Fixed syntax errors
svn path=/trunk/mcs/; revision=1119
Diffstat (limited to 'mcs/class/System.XML/Test/AllTests.cs')
-rw-r--r--mcs/class/System.XML/Test/AllTests.cs35
1 files changed, 17 insertions, 18 deletions
diff --git a/mcs/class/System.XML/Test/AllTests.cs b/mcs/class/System.XML/Test/AllTests.cs
index ec3ad28be03..b1e79904419 100644
--- a/mcs/class/System.XML/Test/AllTests.cs
+++ b/mcs/class/System.XML/Test/AllTests.cs
@@ -5,23 +5,22 @@
//
using NUnit.Framework;
-namespace Ximian.Mono.Tests {
- /// <summary>
- /// Combines all unit tests for the System.XML.dll assembly
- /// into one test suite.
- /// </summary>
- public class AllTests : TestCase {
- public AllTests(string name) : base(name) {}
+namespace Ximian.Mono.Tests
+{
+ /// <summary>
+ /// Combines all unit tests for the System.XML.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(System.Xml.Test)));
- return suite;
- }
- }
- }
+ public static ITest Suite {
+ get {
+ TestSuite suite = new TestSuite();
+ suite.AddTest(new TestSuite(typeof(System.Xml.Test)));
+ return suite;
+ }
+ }
+ }
}