Dependencies of PlatformTestCase
Consider this test class that extends com.intellij.testFramework.PlatformTestCase:
import com.intellij.testFramework.PlatformTestCase;
import org.junit.Test;
public class PlatformtestcaseExample extends PlatformTestCase {
@Test
public void testFoo() {
assertEquals(1, 1);
}
}
What are its dependencies? I.e. which jar files specifically does it need to reference to run? junit.jar is one. What else?
Please sign in to leave a comment.