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

AllTests.cs « Test « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3d64c22297d1b6dcac62d080165bcf2bb98bbeaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Author: Tim Coleman (tim@timcoleman.com)
// Copyright 2002 Tim Coleman

using System;
using System.Data;
using System.Data.SqlTypes;
using NUnit.Framework;

namespace MonoTests {
	public class AllTests : TestCase {
		public AllTests (string name) : base (name) {}

		public static ITest Suite {
			get {
				TestSuite suite = new TestSuite ();
				suite.AddTest (System.Data.SqlTypes.AllTests.Suite);
				return suite;
			}
		}
	}
}