| 1234567891011121314151617181920212223242526272829 |
- // Testsuite.System.AllSystemTests.cs
- //
- // Mario Martinez ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- using System;
- using NUnit.Framework;
- namespace MonoTests.System.Runtime.CompilerServices {
- /// <summary>
- /// Combines all available unit tests into one test suite.
- /// </summary>
- public class AllTests : TestCase {
- public AllTests(string name) : base(name) {}
-
- public static ITest Suite
- {
- get
- {
- TestSuite suite = new TestSuite();
- suite.AddTest(RuntimeHelpersTest.Suite);
- return suite;
- }
- }
- }
- }
|