protected void doTest(String quickFixName) {
String testName = getTestName(true);
myFixture.configureByFile(testName + ".erl");
List<IntentionAction> availableIntentions = myFixture.filterAvailableIntentions(quickFixName);
IntentionAction action = ContainerUtil.getFirstItem(availableIntentions);
assertNotNull(action);
myFixture.launchAction(action);
String after = String.format("%s-after.erl", testName);
myFixture.checkResultByFile(after);
}