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

InvalidTestFixtureException

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