Files
openide/java/java-tests/testSrc/com/intellij/refactoring/FindMethodDuplicatesMiscTest.java
Dmitry Jemerov f9dbab8f6d test++
2009-09-10 20:43:40 +04:00

32 lines
722 B
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();
}
}