TestResultProcessor resultProcessor = new TestListenerAdapter(getTestListenerBroadcaster().getSource());
testExecuter.execute(this, resultProcessor);
testFramework.report();
if (!isIgnoreFailures() && listener.hadFailures()) {
throw new GradleException("There were failing tests. See the report at " + getTestReportDir() + ".");
}
}
/**