Ignore dll's and pdb's
[mono.git] / mcs / class / System.Data / Test / AllTests.cs
1 // Author: Tim Coleman (tim@timcoleman.com)
2 // Copyright 2002 Tim Coleman
3
4 using System;
5 using NUnit.Framework;
6
7 namespace MonoTests.System.Data {
8         public class AllTests : TestCase {
9                 public AllTests (string name) : base (name) {}
10
11                 public static ITest Suite {
12                         get {
13                                 TestSuite suite = new TestSuite ();
14                                 suite.AddTest (SqlTypes.AllTests.Suite);
15                                 return suite;
16                         }
17                 }
18         }
19 }