ingo@0: /* ingo@0: * Copyright (c) 2010 by Intevation GmbH ingo@0: * ingo@0: * This program is free software under the LGPL (>=v2.1) ingo@0: * Read the file LGPL.txt coming with the software for details ingo@0: * or visit http://www.gnu.org/licenses/ if it does not exist. ingo@0: */ ingo@0: package de.intevation.artifacts.httpclient; ingo@0: ingo@0: import junit.framework.Test; ingo@0: import junit.framework.TestCase; ingo@0: import junit.framework.TestSuite; ingo@0: ingo@0: /** ingo@0: * Unit test for simple ConsoleClient. ingo@0: */ ingo@0: public class ConsoleClientTest ingo@0: extends TestCase ingo@0: { ingo@0: /** ingo@0: * Create the test case ingo@0: * ingo@0: * @param testName name of the test case ingo@0: */ ingo@0: public ConsoleClientTest( String testName ) ingo@0: { ingo@0: super( testName ); ingo@0: } ingo@0: ingo@0: /** ingo@0: * @return the suite of tests being tested ingo@0: */ ingo@0: public static Test suite() ingo@0: { ingo@0: return new TestSuite( ConsoleClientTest.class ); ingo@0: } ingo@0: ingo@0: /** ingo@0: * Rigourous Test :-) ingo@0: */ ingo@0: public void testConsoleClient() ingo@0: { ingo@0: assertTrue( true ); ingo@0: } ingo@0: }