moving tests to CE

This commit is contained in:
Dmitry Jemerov
2009-09-25 20:50:41 +04:00
parent debc16135f
commit 96ed6ab4dc
3 changed files with 6 additions and 0 deletions
@@ -1,9 +1,15 @@
package com.intellij.codeInspection;
import com.intellij.JavaTestUtil;
import com.intellij.codeInspection.duplicateThrows.DuplicateThrowsInspection;
import com.intellij.testFramework.InspectionTestCase;
public class DuplicateThrowsInspectionTest extends InspectionTestCase {
@Override
protected String getTestDataPath() {
return JavaTestUtil.getJavaTestDataPath() + "/inspection";
}
private void doTest() throws Exception {
doTest("duplicateThrows/" + getTestName(true), new DuplicateThrowsInspection());
}