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