mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
some tests from execution-tests moved to community
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
package apackage;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
public class SampleClass extends TestCase {
|
||||
public void test1() {}
|
||||
|
||||
public static void main(String[] args){ }
|
||||
}
|
||||
BIN
Binary file not shown.
@@ -0,0 +1,2 @@
|
||||
package junit.framework;
|
||||
public class TestCase {}
|
||||
BIN
Binary file not shown.
+2
@@ -0,0 +1,2 @@
|
||||
package junit.framework;
|
||||
public class ThirdPartyClass extends TestCase {}
|
||||
@@ -0,0 +1,6 @@
|
||||
package test1;
|
||||
|
||||
import junit.framework.ThirdPartyClass;
|
||||
|
||||
public class DerivedTest extends ThirdPartyClass {
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package test1;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
public class InnerTest {
|
||||
public static class Inner extends TestCase {
|
||||
public void test() {}
|
||||
public static void main(String[] args) {}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package test1;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
public class TestA extends TestCase {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package test2;
|
||||
|
||||
public class NotATest {
|
||||
static class InnerApplication {
|
||||
public static void main(String[] args) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package test1;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
public class TestA extends TestCase {
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package test2;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
public class Test2 extends TestCase {
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package test1;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
public class TestB extends TestCase {}
|
||||
@@ -0,0 +1,3 @@
|
||||
package test2;
|
||||
|
||||
public class NotATest2 {}
|
||||
@@ -0,0 +1,3 @@
|
||||
public class Application {
|
||||
public static void main(String[] args){}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
import junit.framework.TestCase;
|
||||
|
||||
public class TestApplication extends TestCase {
|
||||
public void test() { }
|
||||
public static void main(String[] args){ }
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package test1;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
public class Test5 extends TestCase {
|
||||
public void test() {}
|
||||
}
|
||||
Reference in New Issue
Block a user