mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 02:32:34 +07:00
Splits the JUnit configuration tests from Application configuration tests and inverses the dependency between `java.tests` and `junit.java.tests`. (cherry picked from commit 062a96590e6f07f252f429e79e7d9ea46768c88e) IJ-MR-153625 GitOrigin-RevId: 103c768ee584fb1565d94c4ce72d07ef44f18fa9
9 lines
168 B
Java
9 lines
168 B
Java
package apackage;
|
|
|
|
import junit.framework.TestCase;
|
|
|
|
public class SampleClass extends TestCase {
|
|
public void test1() {}
|
|
|
|
public static void main(String[] args){ }
|
|
} |