wasrun.java

来自「Java测试工具Junit3.8.1官方发布源码」· Java 代码 · 共 14 行

JAVA
14
字号
package junit.tests;

import junit.framework.*;

/**
 * A helper test case for testing whether the testing method
 * is run.
 */
public class WasRun extends TestCase {
	public boolean fWasRun= false;
		protected void runTest() {
			fWasRun= true;
		}
}

⌨️ 快捷键说明

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