use of com.intellij.execution.configurations.ModuleRunConfiguration in project intellij-community by JetBrains.
the class BaseSMTRunnerTestCase method createConsoleProperties.
protected TestConsoleProperties createConsoleProperties() {
final ModuleRunConfiguration runConfiguration = createRunConfiguration();
final TestConsoleProperties consoleProperties = new SMTRunnerConsoleProperties(runConfiguration, "SMRunnerTests", DefaultDebugExecutor.getDebugExecutorInstance());
TestConsoleProperties.HIDE_PASSED_TESTS.set(consoleProperties, false);
return consoleProperties;
}
Aggregations