Table of Contents

Method OnTestMethodFinished

Namespace
Xunit.v3
Assembly
xunit.v3.core.dll

OnTestMethodFinished(TContext, RunSummary)

This method will be called when the test method has finished running. By default, this sends TestMethodFinished. Override this to enable any extensibility related to test method finish.

protected virtual ValueTask<bool> OnTestMethodFinished(TContext ctxt, RunSummary summary)

Parameters

ctxt TContext

The context that describes the current test method

summary

The execution summary for the test method

Returns

ValueTask<bool>

Return true if test execution should continue; false if it should be shut down.

Remarks

This method runs during CleaningUp and any exceptions thrown will contribute to test method cleanup failure.