| 123456789101112131415161718192021222324252627282930313233 |
- //
- // MonoTests.System.ComponentModel.AllTests
- //
- // Author:
- // Gonzalo Panigua Javier ([email protected])
- //
- // (c) 2002 Ximian, Inc (http://www.ximian.com)
- //
- using NUnit.Framework;
- using System.ComponentModel;
- namespace MonoTests.System.ComponentModel
- {
- public class AllTests : TestCase
- {
- public AllTests () : base ("MonoTests.System.ComponentModel testcase") { }
- public AllTests (string name) : base (name)
- {
- }
- public static ITest Suite
- {
- get {
- TestSuite suite = new TestSuite ();
- suite.AddTest (EventHandlerListTests.Suite);
- return suite;
- }
- }
- }
- }
|