mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-06 13:20:53 +07:00
8 lines
156 B
Java
8 lines
156 B
Java
package abstractTests;
|
|
|
|
import junit.framework.TestCase;
|
|
|
|
public abstract class AbstractTest extends TestCase {
|
|
public void test1() throws Exception {}
|
|
}
|