blob: 02a985c1dea8b86cdf857382cc402d51973da1d2 [file] [log] [blame]
import junit.framework.TestCase;
public class T extends TestCase {
public void setUp() throws Exception {
String na<caret>me = getName();
myName = " second " + name;
}
public void test() throws Exception {
}
private String getName() {
return null;
}
}