use of org.sonar.server.text.MacroInterpreter in project sonarqube by SonarSource.
the class CreateActionTest method createMacroInterpreter.
private static MacroInterpreter createMacroInterpreter() {
MacroInterpreter macroInterpreter = mock(MacroInterpreter.class);
doAnswer(returnsFirstArg()).when(macroInterpreter).interpret(anyString());
return macroInterpreter;
}
use of org.sonar.server.text.MacroInterpreter in project sonarqube by SonarSource.
the class UpdateActionTest method createMacroInterpreter.
private static MacroInterpreter createMacroInterpreter() {
MacroInterpreter macroInterpreter = mock(MacroInterpreter.class);
doAnswer(returnsFirstArg()).when(macroInterpreter).interpret(anyString());
return macroInterpreter;
}
Aggregations