AllTests.cs 818 B

1234567891011121314151617181920212223242526272829
  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.Runtime.CompilerServices {
  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(RuntimeHelpersTest.Suite);
  21. return suite;
  22. }
  23. }
  24. }
  25. }