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

InvalidTestFixtureException

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