forked from xunit/assert.xunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMultipleAsserts.cs
49 lines (43 loc) · 983 Bytes
/
MultipleAsserts.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#if XUNIT_NULLABLE
#nullable enable
#endif
using System;
using System.Collections.Generic;
using System.Runtime.ExceptionServices;
using Xunit.Sdk;
namespace Xunit
{
#if XUNIT_VISIBILITY_INTERNAL
internal
#else
public
#endif
partial class Assert
{
/// <summary>
/// Runs multiple checks, collecting the exceptions from each one, and then bundles all failures
/// up into a single assertion failure.
/// </summary>
/// <param name="checks">The individual assertions to run, as actions.</param>
public static void Multiple(params Action[] checks)
{
if (checks == null || checks.Length == 0)
return;
var exceptions = new List<Exception>();
foreach (var check in checks)
try
{
check();
}
catch (Exception ex)
{
exceptions.Add(ex);
}
if (exceptions.Count == 0)
return;
if (exceptions.Count == 1)
ExceptionDispatchInfo.Capture(exceptions[0]).Throw();
throw new MultipleException(exceptions);
}
}
}