<PackageReference Include="NUnit" Version="4.3.2" />

InvalidTestFixtureException

InvalidTestFixtureException is thrown when an appropriate test fixture constructor using the provided arguments cannot be found.
using System; using System.Runtime.CompilerServices; using System.Runtime.Serialization; namespace NUnit.Framework.Internal { [Serializable] [System.Runtime.CompilerServices.NullableContext(1)] [System.Runtime.CompilerServices.Nullable(0)] public class InvalidTestFixtureException : Exception { public InvalidTestFixtureException() { } public InvalidTestFixtureException(string message) : base(message) { } public InvalidTestFixtureException(string message, Exception inner) : base(message, inner) { } protected InvalidTestFixtureException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }