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

AllTests.cs « Test « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 923916f47e60faf3e743662ed8041a205ebd782d (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
// MonoTests.AllTests, System.dll
//
// Author:
//   Mario Martinez (mariom925@home.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//

using NUnit.Framework;
namespace MonoTests
{
	/// <summary>
	///   Combines all unit tests for the System.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 (System.AllTests.Suite);
				suite.AddTest (System.Collections.Specialized.AllTests.Suite);
				suite.AddTest (System.Diagnostics.AllTests.Suite);
                                suite.AddTest (System.Net.AllTests.Suite);
                                suite.AddTest (System.Net.Sockets.AllTests.Suite);
				suite.AddTest (System.Text.RegularExpressions.AllTests.Suite);
				return suite;
			}
		}
	}
}