Table of Contents

Method MultipleAsync

Namespace
Xunit
Assembly
xunit.v3.assert.dll

MultipleAsync(params Func<Task>[])

Asynchronously runs multiple checks, collecting the exceptions from each one, and then bundles all failures up into a single assertion failure.

public static Task MultipleAsync(params Func<Task>[] checks)

Parameters

checks Func<Task>[]

The individual assertions to run, as async actions.

Returns

Task