AllTests.cs 423 B

1234567891011121314151617181920212223
  1. // Author:
  2. // Ville Palo ([email protected])
  3. //
  4. // (C) Copyright 2002 Ville Palo
  5. //
  6. using NUnit.Framework;
  7. namespace MonoTests.System.Data.Xml
  8. {
  9. public class AllTests : TestCase
  10. {
  11. public AllTests (string name) : base (name) {}
  12. public static ITest Suite {
  13. get {
  14. TestSuite suite = new TestSuite ();
  15. suite.AddTest (new TestSuite (typeof (XmlDataDocumentTest)));
  16. return suite;
  17. }
  18. }
  19. }
  20. }