/// <inheritdoc/>
        protected override bool Visit(ITestAssemblyExecutionFinished executionFinished)
        {
            Logger.LogImportantMessage($"  Finished:    {GetAssemblyDisplayName(executionFinished.Assembly)}");

            RemoveExecutionOptions(executionFinished.Assembly.AssemblyFilename);

            return(base.Visit(executionFinished));
        }
Example #2
0
 /// <summary>
 /// Called when an instance of <see cref="ITestAssemblyExecutionFinished"/> is sent to the message sink.
 /// </summary>
 /// <param name="executionFinished">The message.</param>
 /// <returns>Return <c>true</c> to continue executing tests; <c>false</c> otherwise.</returns>
 protected virtual bool Visit(ITestAssemblyExecutionFinished executionFinished)
 {
     return(true);
 }
 protected override bool Visit(ITestAssemblyExecutionFinished executionFinished)
     => true;
        /// <inheritdoc/>
        protected override bool Visit(ITestAssemblyExecutionFinished executionFinished)
        {
            Logger.LogImportantMessage("  Finished:    {0}", GetAssemblyDisplayName(executionFinished.Assembly));

            RemoveExecutionOptions(executionFinished.Assembly.AssemblyFilename);

            return base.Visit(executionFinished);
        }
 protected override bool Visit(ITestAssemblyExecutionFinished executionFinished)
 => true;
 protected override bool Visit(ITestAssemblyExecutionFinished executionFinished)
 {
     return(true);
 }