|
#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.IsNotAssignableFrom fails.
/// </summary>
#if XUNIT_VISIBILITY_INTERNAL
internal
#else
public
#endif
partial class IsNotAssignableFromException : XunitException
{
IsNotAssignableFromException(string message) :
base(message)
{ }
/// <summary>
/// Creates a new instance of the <see cref="IsNotAssignableFromException"/> class to be thrown when
/// the value is compatible with the given type.
/// </summary>
/// <param name="expected">The expected type</param>
/// <param name="actual">The actual object value</param>
public static IsNotAssignableFromException ForCompatibleType(
Type expected,
object actual) =>
new IsNotAssignableFromException(
string.Format(
CultureInfo.CurrentCulture,
"Assert.IsNotAssignableFrom() Failure: Value is a compatible type{0}Expected: {1}{2}Actual: {3}",
Environment.NewLine,
ArgumentFormatter.Format(Assert.GuardArgumentNotNull(nameof(expected), expected)),
Environment.NewLine,
ArgumentFormatter.Format(Assert.GuardArgumentNotNull(nameof(actual), actual).GetType())
)
);
}
}
|