/// <summary>
 /// Gets a flag that determines whether xUnit.net should report test results synchronously.
 /// If the flag is not set, returns the default value (<c>false</c>).
 /// </summary>
 public static bool SynchronousMessageReportingOrDefault(this ITestFrameworkExecutionOptions executionOptions)
 {
     return(executionOptions.SynchronousMessageReporting() ?? false);
 }