// Testsuite.System.AllSystemTests.cs // // Mario Martinez (mariom925@home.om) // // (C) Ximian, Inc. http://www.ximian.com // using System; using NUnit.Framework; namespace MonoTests.System.Threading { /// /// Combines all available unit tests into one test suite. /// public class AllTests : TestCase { public AllTests(string name) : base(name) {} public static ITest Suite { get { TestSuite suite = new TestSuite(); suite.AddTest(ThreadTest.Suite); suite.AddTest(MutexTest.Suite); return suite; } } } }