Files
openide/java/java-tests/testSrc/com/intellij/refactoring/FindMethodDuplicatesMiscTest.java

78 lines
1.6 KiB
Java

/*
* User: anna
* Date: 22-Jul-2008
*/
package com.intellij.refactoring;
public class FindMethodDuplicatesMiscTest extends FindMethodDuplicatesBaseTest {
@Override
protected String getTestFilePath() {
return "/refactoring/methodDuplicatesMisc/" + getTestName(false) + ".java";
}
public void testChangeReturnTypeByParameter() throws Exception {
doTest();
}
public void testChangeReturnTypeByField() throws Exception {
doTest();
}
public void testMethodTypeParameters() throws Exception {
doTest();
}
public void testChangeReturnTypeByReturnExpression() throws Exception {
doTest();
}
public void testChangeReturnTypeByReturnValue() throws Exception {
doTest();
}
public void testParametersModification() throws Exception {
doTest();
}
public void testPassArray2VarargMethodCall() throws Exception {
doTest();
}
public void testDetectNameConflicts() throws Exception {
doTest();
}
public void testNoDetectNameConflicts() throws Exception {
doTest();
}
public void testDetectNameConflictsWithStatic() throws Exception {
doTest();
}
public void testCorrectThis() throws Exception {
doTest();
}
public void testSuperInTheSameContext() throws Exception {
doTest(false);
}
public void testSuperInTheSameContextQualified() throws Exception {
doTest();
}
public void testInsertSuperQualifierWhenNameConflicts() throws Exception {
doTest();
}
public void testUnqualifiedStaticAccess() throws Exception {
doTest();
}
public void testCandidateUnqualifiedStaticAccess() throws Exception {
doTest();
}
}