add setup method before first test method: setting needed? (IDEA-61605)

This commit is contained in:
anna
2010-11-25 16:21:55 +03:00
parent 5ebb6cc3c2
commit cd5b299bf4
8 changed files with 49 additions and 18 deletions
@@ -9,11 +9,11 @@ class Base extends TestCase {
public class T extends Base {
private int i;
public void test() {
}
public void setUp() throws Exception {
super.setUp();
i = 9;
}
public void test() {
}
}