KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jgap > util > PluginDiscovererTest


1 /*
2  * This file is part of JGAP.
3  *
4  * JGAP offers a dual license model containing the LGPL as well as the MPL.
5  *
6  * For licencing information please see the file license.txt included with JGAP
7  * or have a look at the top of class org.jgap.Chromosome which representatively
8  * includes the JGAP license policy applicable for any file delivered with JGAP.
9  */

10 package org.jgap.util;
11
12 import org.jgap.*;
13 import junit.framework.*;
14
15 /**
16  * Tests the PluginDiscoverer class
17  *
18  * @author Klaus Meffert
19  * @since 2.5
20  */

21 public class PluginDiscovererTest
22     extends JGAPTestCase {
23   /** String containing the CVS revision. Read out via reflection!*/
24   private final static String JavaDoc CVS_REVISION = "$Revision: 1.1 $";
25
26   public static Test suite() {
27     TestSuite suite = new TestSuite(PluginDiscovererTest.class);
28     return suite;
29   }
30
31   public void testConstruct_0() {
32     /**@todo implement*/
33   }
34   /**@todo add further tests*/
35 }
36
Popular Tags