| 1234567891011121314151617 |
- // IPHostEntryTest.cs - NUnit Test Cases for the System.Net.IPHostEntry class
- //
- // Author: Mads Pultz ([email protected])
- //
- // (C) Mads Pultz, 2001
- using NUnit.Framework;
- using System;
- public class IPHostEntryTest: TestCase {
-
- public IPHostEntryTest(String name): base(name) {}
- public static ITest Suite {
- get { return new TestSuite(typeof(IPHostEntryTest)); }
- }
- }
|