Files
openide/java/java-tests/testData/refactoring/introduceField/afterInSetUp.java
Anna Kozlova 2350d7f3e4 template fixed
2012-05-18 11:42:15 +04:00

13 lines
208 B
Java

import junit.framework.TestCase;
public class T extends TestCase {
private int i;
public void setUp() throws Exception {
super.setUp();
i = 9;
}
public void test() {
}
}