AllTests.cs 635 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // MonoTests.AllTests.cs
  3. //
  4. // Author:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (C) 2002 Ximian, Inc. (http://www.ximian.com)
  8. //
  9. using System;
  10. using NUnit.Framework;
  11. namespace MonoTests
  12. {
  13. public class AllTests : TestCase
  14. {
  15. public AllTests (string name) : base (name) {}
  16. public static ITest Suite
  17. {
  18. get {
  19. TestSuite suite = new TestSuite();
  20. suite.AddTest (System.Configuration.Install.AllTests.Suite);
  21. return suite;
  22. }
  23. }
  24. }
  25. }