blob: 27d0cfdc6dc8fadc2e2218e01b2b345a17ee7a31 [file] [log] [blame]
package com.siyeh.ipp.decls;
import com.siyeh.IntentionPowerPackBundle;
import com.siyeh.ipp.IPPTestCase;
/**
* @author Bas Leijdekkers
*/
public class ChangeVariableTypeToRhsTypeIntentionTest extends IPPTestCase {
public void testSimple() { doTest("Declare 'ss' with type 'ArrayList<String>'"); }
public void testSameType() { assertIntentionNotAvailable(); }
public void testAnonymous() { assertIntentionNotAvailable(); }
@Override
protected String getIntentionName() {
return IntentionPowerPackBundle.message("change.variable.type.to.rhs.type.intention.name", "ss", "ArrayList<String>");
}
@Override
protected String getRelativePath() {
return "decls/change_variable_type_to_rhs_type";
}
}