mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 16:20:55 +07:00
20 lines
515 B
Java
20 lines
515 B
Java
import junit.framework.TestCase;
|
|
|
|
public class AllConditionsTest extends TestCase {
|
|
public void test() {
|
|
AllConditions conditions = new AllConditions();
|
|
|
|
conditions.test1(false, false);
|
|
conditions.test2(false, false, false);
|
|
conditions.test3(false, false, false, false);
|
|
}
|
|
|
|
public void testKotlin() {
|
|
KtAllConditions conditions = new KtAllConditions();
|
|
|
|
conditions.test1(false, false);
|
|
conditions.test2(false, false, false);
|
|
conditions.test3(false, false, false, false);
|
|
}
|
|
|
|
} |