test.java

来自「MoMEUnit是一个单元测试的J2ME的应用程序xUnit架构实例。这是来自J」· Java 代码 · 共 22 行

JAVA
22
字号
package momeunit.framework;/** * A Base interface that all tests should implement. *  * @author Sergio Morozov * @version 1.1.2 */public interface Test{  /**   * Counts the number of test cases that will be run by this test.   @since 1.0   */  public abstract int countTestCases();  /**   * Runs a test and collects its result in a TestResult instance.   @since 1.0   */  public abstract void run(TestResult result);}

⌨️ 快捷键说明

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