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

AllTests.cs « System.Globalization « Test « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d80e617556a2017c13a8697209522234287e0ce (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
// System.Globalization/AllTests.cs
//
// (C) 2002 Ulrich Kunitz
//

using System;
using NUnit.Framework;

namespace MonoTests.System.Globalization {

/// <summary>
///   Combines all available unit tests 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(CalendarTest.Suite);
			return suite;
		}
	}
} // class AllTests

} // namespace MonoTests.System.Globalization