FileDocCategorySizeDatePackage
RepeatedTest.javaAPI DocAndroid 1.5 API666Wed May 06 22:41:02 BST 2009junit.extensions

RepeatedTest

public class RepeatedTest extends TestDecorator
A Decorator that runs a test repeatedly.

Fields Summary
private int
fTimesRepeat
Constructors Summary
public RepeatedTest(Test test, int repeat)

		super(test);
		if (repeat < 0)
			throw new IllegalArgumentException("Repetition count must be > 0");
		fTimesRepeat= repeat;
	
Methods Summary
public intcountTestCases()

		return super.countTestCases()*fTimesRepeat;
	
public voidrun(junit.framework.TestResult result)

		for (int i= 0; i < fTimesRepeat; i++) {
			if (result.shouldStop())
				break;
			super.run(result);
		}
	
public java.lang.StringtoString()

		return super.toString()+"(repeated)";