Jackett/src/Jackett.Test/TestHelpers/TestExceptions.cs

10 lines
230 B
C#

using NUnit.Framework;
namespace Jackett.Test.TestHelpers
{
internal static class TestExceptions
{
public static AssertionException UnexpectedInvocation => new AssertionException("Unexpected Invocation");
}
}