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

AllTests.cs « System.Text.RegularExpressions « Test « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6016eeef70aaa48783d63f59001198b9a5f7ca0f (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
//
// assembly:	System_test
// namespace:	MonoTests.System.Text.RegularExpressions
// file:	AllTests.cs
//
// author:	Dan Lewis (dlewis@gmx.co.uk)
// 		(c) 2002

using System;
using NUnit.Framework;

namespace MonoTests.System.Text.RegularExpressions {
	
	public class AllTests : TestCase {
		public AllTests (string name) : base (name) { }

		public static ITest Suite {
			get {
				TestSuite suite = new TestSuite ();
				suite.AddTest (PerlTest.Suite);

				return suite;
			}
		}
	}
}