mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
52 lines
1.1 KiB
Java
52 lines
1.1 KiB
Java
/*
|
|
* Copyright (c) 2000-2006 JetBrains s.r.o. All Rights Reserved.
|
|
*/
|
|
|
|
/*
|
|
* Created by IntelliJ IDEA.
|
|
* User: Anna.Kozlova
|
|
* Date: 07-Aug-2006
|
|
* Time: 20:34:37
|
|
*/
|
|
package com.intellij.codeInspection;
|
|
|
|
import com.intellij.JavaTestUtil;
|
|
import com.intellij.codeInspection.equalsAndHashcode.EqualsAndHashcode;
|
|
import com.intellij.testFramework.InspectionTestCase;
|
|
|
|
public class EqualsAndHashCodeTest extends InspectionTestCase {
|
|
private final EqualsAndHashcode myTool = new EqualsAndHashcode();
|
|
|
|
@Override
|
|
protected String getTestDataPath() {
|
|
return JavaTestUtil.getJavaTestDataPath() + "/inspection";
|
|
}
|
|
|
|
@Override
|
|
protected void setUp() throws Exception {
|
|
super.setUp();
|
|
myTool.projectOpened(getProject());
|
|
}
|
|
|
|
|
|
@Override
|
|
protected void tearDown() throws Exception {
|
|
myTool.projectClosed(getProject());
|
|
super.tearDown();
|
|
}
|
|
|
|
private void doTest() throws Exception {
|
|
doTest("equalsAndHashcode/" + getTestName(true), myTool);
|
|
}
|
|
|
|
|
|
public void testInnerClass() throws Exception {
|
|
doTest();
|
|
}
|
|
|
|
public void testHierarchy() throws Exception {
|
|
doTest();
|
|
}
|
|
|
|
}
|