Package com.intellij.codeInsight.actions

Examples of com.intellij.codeInsight.actions.MultiCaretCodeInsightAction


        doTest(IdeActions.ACTION_COMMENT_BLOCK);
    }

    private void doTest(final String actionId) throws Throwable {
        myFixture.configureByFile(Util.getInputDataFileName(getTestName(true)));
        MultiCaretCodeInsightAction action = (MultiCaretCodeInsightAction) ActionManager.getInstance().getAction(actionId);
        action.actionPerformedImpl(myModule.getProject(), myFixture.getEditor());
        myFixture.checkResultByFile(Util.getExpectedDataFileName(getTestName(true)));
    }
View Full Code Here

TOP

Related Classes of com.intellij.codeInsight.actions.MultiCaretCodeInsightAction

Copyright © 2018 www.massapicom. 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.