Files
openide/plugins/coverage/testData/conditions/testSrc/AllConditionsTest.java
Maksim Zuev 612095c522 [coverage] IDEA-340739 Show hints for Kotlin conditions
GitOrigin-RevId: d04760ec0fa62cce62508c9d5d63efce8bb67f45
2024-01-10 14:42:32 +00:00

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);
}
}