AllTests.cs 594 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // MonoTests.System.ComponentModel.AllTests
  3. //
  4. // Author:
  5. // Gonzalo Panigua Javier ([email protected])
  6. //
  7. // (c) 2002 Ximian, Inc (http://www.ximian.com)
  8. //
  9. using NUnit.Framework;
  10. using System.ComponentModel;
  11. namespace MonoTests.System.ComponentModel
  12. {
  13. public class AllTests : TestCase
  14. {
  15. public AllTests () : base ("MonoTests.System.ComponentModel testcase") { }
  16. public AllTests (string name) : base (name)
  17. {
  18. }
  19. public static ITest Suite
  20. {
  21. get {
  22. TestSuite suite = new TestSuite ();
  23. suite.AddTest (EventHandlerListTests.Suite);
  24. return suite;
  25. }
  26. }
  27. }
  28. }