allformulafindertests.java

来自「用java实现遗传算法的调用」· Java 代码 · 共 30 行

JAVA
30
字号
package examples.functionFinder.test;

import junit.framework.*;

/**
 * Runs all tests for formula finder example.<p>
 * Not included with other test suites (ALlTests) as this relies on a third-
 * party library.
 *
 * @author Klaus Meffert
 * @since 2.2
 */
public class AllFormulaFinderTests extends TestSuite {

  /** String containing the CVS revision. Read out via reflection!*/
  private static final String CVS_REVISION = "$Revision: 1.2 $";

  public AllFormulaFinderTests(String name) {
    super(name);
  }

  public static Test suite() {
    TestSuite suite = new TestSuite();
    suite.addTestSuite(FunctionBuilderTest.class);
    suite.addTestSuite(FitnessValueTest.class);
    suite.addTestSuite(GeneExtractorTest.class);
    return suite;
  }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?