mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 00:40:28 +07:00
17 lines
305 B
Java
17 lines
305 B
Java
import junit.framework.TestCase;
|
|
public class T extends TestCase {
|
|
private String i;
|
|
|
|
public void setUp() throws Exception {
|
|
i = getName();
|
|
myName = " second " + i;
|
|
}
|
|
|
|
public void test() throws Exception {
|
|
}
|
|
|
|
private String getName() {
|
|
return null;
|
|
}
|
|
}
|