24af29b962a8e814a28fc449d40d244097cae469
[mono.git] / mcs / class / System.Data / Test / System.Data.SqlTypes / AllTests.cs
1 // Author:
2 //   Tim Coleman (tim@timcoleman.com)
3 //
4 // (C) Copyright 2002 Tim Coleman
5 //
6
7 using NUnit.Framework;
8
9 namespace MonoTests.System.Data.SqlTypes
10 {
11         /// <summary>
12         ///   Combines all unit tests for the System.Data.dll assembly
13         ///   into one test suite.
14         /// </summary>
15         public class AllTests : TestCase
16         {
17                 public AllTests (string name) : base (name) {}
18
19                 public static ITest Suite {
20                         get {
21                                 TestSuite suite =  new TestSuite ();
22                                 suite.AddTest (new TestSuite (typeof (SqlBooleanTest)));
23                                 suite.AddTest (new TestSuite (typeof (SqlByteTest)));
24                                 suite.AddTest (new TestSuite (typeof (SqlInt16Test)));
25                                 suite.AddTest (new TestSuite (typeof (SqlInt32Test)));
26                                 suite.AddTest (new TestSuite (typeof (SqlInt64Test)));
27                                 return suite;
28                         }
29                 }
30         }
31 }