AllTests.cs 535 B

12345678910111213141516171819202122232425262728
  1. // System.Globalization/AllTests.cs
  2. //
  3. // (C) 2002 Ulrich Kunitz
  4. //
  5. using System;
  6. using NUnit.Framework;
  7. namespace MonoTests.System.Globalization {
  8. /// <summary>
  9. /// Combines all available unit tests into one test suite.
  10. /// </summary>
  11. public class AllTests : TestCase {
  12. public AllTests(string name) : base(name) {}
  13. public static ITest Suite
  14. {
  15. get
  16. {
  17. TestSuite suite = new TestSuite();
  18. suite.AddTest(CalendarTest.Suite);
  19. return suite;
  20. }
  21. }
  22. } // class AllTests
  23. } // namespace MonoTests.System.Globalization