testruncontext.java
来自「JAVA 数学程序库 提供常规的数值计算程序包」· Java 代码 · 共 21 行
JAVA
21 行
package jmathlib.tools.junit.swingui;
import javax.swing.ListModel;
import jmathlib.tools.junit.framework.Test;
/**
* The interface for accessing the Test run context. Test run views
* should use this interface rather than accessing the TestRunner
* directly.
*/
public interface TestRunContext {
/**
* Handles the selection of a Test.
*/
public void handleTestSelected(Test test);
/**
* Returns the failure model
*/
public ListModel getFailures();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?