use of com.intellij.find.FindModel in project intellij-community by JetBrains.
the class GrFindManagerTest method testFindInShellCommentsOfGroovy.
public void testFindInShellCommentsOfGroovy() {
FindModel findModel = FindManagerTestUtils.configureFindModel("done");
findModel.setWholeWordsOnly(true);
findModel.setInCommentsOnly(true);
String text = "#! done done done\n";
FindManagerTestUtils.runFindForwardAndBackward(myFindManager, findModel, text, "groovy");
}
Aggregations