A method on the runner itself would be ideal, but the runner doesn't know anything about condition evaluation. We may be able to do something similar to the approach taken with AutoConfigurations.of.
The goal is to provide a more succinct and discoverable equivalent of the following code:
ConditionEvaluationReport report = ConditionEvaluationReport
.get((ConfigurableListableBeanFactory) context.getAutowireCapableBeanFactory());
ConditionEvaluationReportMessage message = new ConditionEvaluationReportMessage(report);
System.out.println(message);