AllTests.cs 818 B

123456789101112131415161718192021222324252627282930
  1. // Testsuite.System.AllSystemTests.cs
  2. //
  3. // Mario Martinez ([email protected])
  4. //
  5. // (C) Ximian, Inc. http://www.ximian.com
  6. //
  7. using System;
  8. using NUnit.Framework;
  9. namespace MonoTests.System.Net {
  10. /// <summary>
  11. /// Combines all available unit tests into one test suite.
  12. /// </summary>
  13. public class AllTests : TestCase {
  14. public AllTests(string name) : base(name) {}
  15. public static ITest Suite {
  16. get
  17. {
  18. TestSuite suite = new TestSuite();
  19. suite.AddTest (IPAddressTest.Suite);
  20. suite.AddTest (IPEndPointTest.Suite);
  21. return suite;
  22. }
  23. }
  24. }
  25. }