AllTests.cs 859 B

123456789101112131415161718192021222324252627282930
  1. // Testsuite.System.AllSystemTests.cs
  2. //
  3. // Mario Martinez ([email protected])
  4. //
  5. // (C) Ximian, Inc. http://www.ximian.com
  6. //
  7. using System;
  8. using NUnit.Framework;
  9. namespace MonoTests.System.Threading {
  10. /// <summary>
  11. /// Combines all available unit tests into one test suite.
  12. /// </summary>
  13. public class AllTests : TestCase {
  14. public AllTests(string name) : base(name) {}
  15. public static ITest Suite
  16. {
  17. get
  18. {
  19. TestSuite suite = new TestSuite();
  20. suite.AddTest(ThreadTest.Suite);
  21. suite.AddTest(MutexTest.Suite);
  22. return suite;
  23. }
  24. }
  25. }
  26. }