| 123456789101112131415161718192021222324252627282930 |
- // Testsuite.System.AllSystemTests.cs
- //
- // Mario Martinez ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- using System;
- using NUnit.Framework;
- namespace MonoTests.System.Net {
- /// <summary>
- /// Combines all available unit tests into one test suite.
- /// </summary>
- public class AllTests : TestCase {
- public AllTests(string name) : base(name) {}
-
- public static ITest Suite {
- get
- {
- TestSuite suite = new TestSuite();
- suite.AddTest (IPAddressTest.Suite);
- suite.AddTest (IPEndPointTest.Suite);
- return suite;
- }
- }
- }
- }
|