protected RunTestCommand(ModuleLocationResolver moduleLocationResolver) {
super(moduleLocationResolver);
}
protected String getMethodName(CommandState commandState, Class<?> testClass) {
SelectMethodCommand command = new SelectMethodCommand(testClass);
command.execute(commandState);
String methodName = command.getMethodName();
if (methodName == null) {
System.out.println("No matching test method found.");
}