Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/finj/test/ConnectionTest.java


1   package org.finj.test;
2   
3   import junit.framework.Test;
4   import junit.framework.TestSuite;
5   
6   import org.finj.test.FinjTestCase;
7   
8   /**
9    * Tests functionalities related to connections in FTP commands.
10   *
11   *
12   *
13   * Copyright (C)
14   *
15   * This library is free software; you can redistribute it and/or
16   * modify it under the terms of the GNU Lesser General Public
17   * License as published by the Free Software Foundation; either
18   * version 2.1 of the License, or (at your option) any later version.
19   *
20   * This library is distributed in the hope that it will be useful,
21   * but WITHOUT ANY WARRANTY; without even the implied warranty of
22   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
23   * Lesser General Public License for more details.
24   *
25   * You should have received a copy of the GNU Lesser General Public
26   * License along with this library; if not, write to the Free Software
27   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
28   *
29   * @author  Javier Iglesias -- jiglesias@users.sourceforge.net
30   * @version $Id: ConnectionTest.java,v 1.2 2003/10/22 08:26:26 jiglesia Exp $
31   * @since   v1.0.2
32   */
33  public class ConnectionTest extends FinjTestCase {
34  
35      /**
36       *
37       *
38       * @since v1.0.2
39       */
40      public ConnectionTest ( String name ) {
41    super(name);
42      }
43  
44      /**
45       *
46       *
47       * @since v1.0.2
48       */
49      public static Test suite ( ) {
50    TestSuite suite = new TestSuite("tests concerning connections in FTP commands");
51    suite.addTestSuite(ConnectionTest.class);
52    return suite;
53      }
54  
55      /**
56       *
57       *
58       * @since v1.0.2
59       */
60      public void test ( ) {
61    System.err.println("ConnectionTest : testing ...");
62    // client.()
63      }
64  
65      /**
66       *
67       *
68       * @since v1.0.2
69       */
70      public static void main ( String[] args ) {
71    new ConnectionTest("").runTestInterface(args);
72      }
73  }