mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
15 lines
302 B
Java
15 lines
302 B
Java
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;
|
|
}
|
|
}
|