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

AllTests.cs « System.Diagnostics « Test « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f5cdb7d305d6b0c4881c423374eb8c32a5074fb (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
//
// MonoTests.System.Diagnostics.AllTests, System.dll
//
// Author:
//   Jonathan Pryor (jonpryor@vt.edu)
//
// (C) 2002 Jonathan Pryor
//

using NUnit.Framework;
using System;

namespace MonoTests.System.Diagnostics {

	public class AllTests : TestCase {

		public AllTests(string name) : base(name)
		{}

		public static ITest Suite {
			get {
				TestSuite suite = new TestSuite();
				suite.AddTest (MonoTests.System.Diagnostics.TraceTest.Suite);
				return suite;
			}
		}
	}
}