Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AllTests.cs « Test « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c33d261de573abdf5741ec303e7a3086e3cffbb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Author:
//   Mario Martinez (mariom925@home.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//

using NUnit.Framework;

namespace MonoTests.System.Xml
{
	/// <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 (XmlProcessingInstructionTests)));
				suite.AddTest (new TestSuite (typeof (XmlTextTests)));
				suite.AddTest (new TestSuite (typeof (XmlTextReaderTests)));
				suite.AddTest (new TestSuite (typeof (XmlTextWriterTests)));
				suite.AddTest (new TestSuite (typeof (XmlNamespaceManagerTests)));
				suite.AddTest (new TestSuite (typeof (XmlAttributeTests)));
				suite.AddTest (new TestSuite (typeof (XmlDocumentTests)));
				suite.AddTest (new TestSuite (typeof (NameTableTests)));
				suite.AddTest (new TestSuite (typeof (XmlElementTests)));
				suite.AddTest (new TestSuite (typeof (XmlNodeListTests)));
				suite.AddTest (new TestSuite (typeof (XmlCommentTests)));
				suite.AddTest (new TestSuite (typeof (XmlCDataSectionTests)));
				suite.AddTest (new TestSuite (typeof (XmlWhitespaceTests)));
				suite.AddTest (new TestSuite (typeof (XmlSignificantWhitespaceTests)));
				suite.AddTest (new TestSuite (typeof (XmlDeclarationTests)));
				suite.AddTest (new TestSuite (typeof (XmlDocumentTypeTests)));
				suite.AddTest (new TestSuite (typeof (XPathNavigatorTests)));
				return suite;
			}
		}
	}
}