| 1234567891011121314151617181920212223 |
- // Author:
- // Ville Palo ([email protected])
- //
- // (C) Copyright 2002 Ville Palo
- //
- using NUnit.Framework;
- namespace MonoTests.System.Data.Xml
- {
- public class AllTests : TestCase
- {
- public AllTests (string name) : base (name) {}
- public static ITest Suite {
- get {
- TestSuite suite = new TestSuite ();
- suite.AddTest (new TestSuite (typeof (XmlDataDocumentTest)));
- return suite;
- }
- }
- }
- }
|