Examples of GherkinInplaceRenameHandler


Examples of org.jetbrains.plugins.cucumber.psi.refactoring.rename.GherkinInplaceRenameHandler

  private void doTest(String newName) {
    boolean b = RefactoringSettings.getInstance().RENAME_SEARCH_IN_COMMENTS_FOR_FILE;
    try {
      myFixture.configureByFile(getTestName(true) + ".feature");
      CodeInsightTestUtil.doInlineRename(new GherkinInplaceRenameHandler(), newName, myFixture);
      myFixture.checkResultByFile(getTestName(true) + "_after.feature");
    }
    finally {
      RefactoringSettings.getInstance().RENAME_SEARCH_IN_COMMENTS_FOR_FILE = b;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.