41df325d247b60132777fc822d2ee73b58241a13
[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 (SqlInt32Test)));
23                                 return suite;
24                         }
25                 }
26         }
27 }