| 1234567891011121314151617181920212223242526272829 |
- //
- // MonoTests.AllTests.cs
- //
- // Author:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002 Ximian, Inc. (http://www.ximian.com)
- //
- using System;
- using NUnit.Framework;
- namespace MonoTests
- {
- public class AllTests : TestCase
- {
- public AllTests (string name) : base (name) {}
-
- public static ITest Suite
- {
- get {
- TestSuite suite = new TestSuite();
- suite.AddTest (System.Configuration.Install.AllTests.Suite);
- return suite;
- }
- }
- }
- }
|