blob: 9e53bfa436cb5c868eac27944856d966afb3853a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
package junit.tests.extensions;
import junit.extensions.RepeatedTest;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestResult;
import junit.framework.TestSuite;
/**
* Testing the RepeatedTest support.
*/
public class RepeatedTestTest extends TestCase {
private TestSuite fSuite;
public static class SuccessTest extends TestCase {
@Override
public void runTest() {
}
}
public RepeatedTestTest(String name) {
super(name);
fSuite= new TestSuite();
fSuite.addTest(new SuccessTest());
fSuite.addTest(new SuccessTest());
}
public void testRepeatedOnce() {
Test test= new RepeatedTest(fSuite, 1);
assertEquals(2, test.countTestCases());
TestResult result= new TestResult();
test.run(result);
assertEquals(2, result.runCount());
}
public void testRepeatedMoreThanOnce() {
Test test= new RepeatedTest(fSuite, 3);
assertEquals(6, test.countTestCases());
TestResult result= new TestResult();
test.run(result);
assertEquals(6, result.runCount());
}
public void testRepeatedZero() {
Test test= new RepeatedTest(fSuite, 0);
assertEquals(0, test.countTestCases());
TestResult result= new TestResult();
test.run(result);
assertEquals(0, result.runCount());
}
public void testRepeatedNegative() {
try {
new RepeatedTest(fSuite, -1);
} catch (IllegalArgumentException e) {
assertTrue(e.getMessage().contains(">="));
return;
}
fail("Should throw an IllegalArgumentException");
}
}
|