blob: fb294ca6aef1cf182c5af63f726b2f76666e1018 [file] [log] [blame]
package junit.tests;
import junit.framework.TestCase;
/**
* A helper test case for testing whether the testing method
* is run.
*/
public class WasRun extends TestCase {
public boolean fWasRun = false;
@Override
protected void runTest() {
fWasRun = true;
}
}