|
#pragma warning disable CA1032 // Implement standard exception constructors
#pragma warning disable IDE0040 // Add accessibility modifiers
#pragma warning disable IDE0090 // Use 'new(...)'
#pragma warning disable IDE0161 // Convert to file-scoped namespace
#if XUNIT_NULLABLE
#nullable enable
#endif
using System;
using System.Globalization;
namespace Xunit.Sdk
{
/// <summary>
/// Exception thrown when Assert.RaisesAny fails.
/// </summary>
#if XUNIT_VISIBILITY_INTERNAL
internal
#else
public
#endif
partial class RaisesAnyException : XunitException
{
RaisesAnyException(string message) :
base(message)
{ }
/// <summary>
/// Creates a new instance of the <see cref="RaisesAnyException" /> class to be thrown when
/// no event was raised.
/// </summary>
/// <param name="expected">The type of the event args that was expected</param>
public static RaisesAnyException ForNoEvent(Type expected) =>
new RaisesAnyException(
string.Format(
CultureInfo.CurrentCulture,
"Assert.RaisesAny() Failure: No event was raised{0}Expected: {1}{2}Actual: No event was raised",
Environment.NewLine,
ArgumentFormatter.Format(Assert.GuardArgumentNotNull(nameof(expected), expected)),
Environment.NewLine
)
);
}
}
|