View Javadoc
1 /************************************************************ 2 * Copyright * 3 * Portions of this software are Copyright (c) 1993 - 2002, * 4 * Chad Z. Hower (Kudzu) and the Indy Pit Crew * 5 * - http://www.nevrona.com/Indy/ * 6 ************************************************************/ 7 package org.indy; 8 9 import junit.framework.Test; 10 import junit.framework.TestCase; 11 import junit.framework.TestSuite; 12 13 14 /*** 15 * DOCUMENT ME! 16 * 17 * @version $Revision$ 18 * @author $author$ 19 */ 20 public class IndyClientTests extends TestCase { 21 /*** 22 * Creates a new IndyClientTests object. 23 * 24 * @param s DOCUMENT ME! 25 */ 26 public IndyClientTests(String s) { 27 super(s); 28 } 29 30 /*** 31 * DOCUMENT ME! 32 * 33 * @return DOCUMENT ME! 34 */ 35 public static Test suite() { 36 TestSuite suite = new TestSuite("IndyJ Client Side Tests"); 37 suite.addTestSuite(org.indy.TestTCPClient.class); 38 39 return suite; 40 } 41 }

This page was automatically generated by Maven