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

AllTests.cs « System.Data.SqlTypes « Test « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 41df325d247b60132777fc822d2ee73b58241a13 (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
// Author:
//   Tim Coleman (tim@timcoleman.com)
//
// (C) Copyright 2002 Tim Coleman
//

using NUnit.Framework;

namespace MonoTests.System.Data.SqlTypes
{
	/// <summary>
	///   Combines all unit tests for the System.Data.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 (SqlInt32Test)));
				return suite;
			}
		}
	}
}