mwekatests.java
来自「化学图形处理软件」· Java 代码 · 共 27 行
JAVA
27 行
package org.openscience.cdk.test;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.openscience.cdk.test.libio.weka.WekaTest;
/**
* TestSuite that runs all the tests for the CDK reaction module.
*
* @cdk.module test-weka
* @cdk.depends weka.jar
* @cdk.depends junit.jar
*/
public class MwekaTests {
public static Test suite() {
TestSuite suite= new TestSuite("CDK weka Tests");
// Individual Tests
suite.addTest(WekaTest.suite());
return suite;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?