<PackageReference Include="NUnit" Version="3.0.0-rc-3" />

IgnoreException

Thrown when an assertion failed.
using NUnit.Framework.Interfaces; using System; using System.Runtime.Serialization; namespace NUnit.Framework { [Serializable] public class IgnoreException : ResultStateException { public override ResultState ResultState => ResultState.Ignored; public IgnoreException(string message) : base(message) { } public IgnoreException(string message, Exception inner) : base(message, inner) { } protected IgnoreException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }