📄 allformulafindertests.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -