|
|
|
@ -44,12 +44,16 @@ public class SpringBootDependencyInjectionTestExecutionListener
|
|
|
|
|
super.prepareTestInstance(testContext);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex) {
|
|
|
|
|
try {
|
|
|
|
|
ApplicationContext context = testContext.getApplicationContext();
|
|
|
|
|
if (context instanceof ConfigurableApplicationContext) {
|
|
|
|
|
ConditionEvaluationReport report = ConditionEvaluationReport
|
|
|
|
|
.get(((ConfigurableApplicationContext) context).getBeanFactory());
|
|
|
|
|
System.err.println(new ConditionEvaluationReportMessage(report));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ignore) {
|
|
|
|
|
}
|
|
|
|
|
throw ex;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|