Files
Jackett-Jackett/src/Jackett.Test/TestBase.cs
flightlevel 3e5e48c3a0 Change namespace to Jackett.Common (#2691)
Really hope I don't break anything with this
Went to have a go at .NET core and it just became too confusing for me with 'Jackett' namespace referring to both Jackett.Common and Jackett
2018-03-10 19:05:56 +11:00

14 lines
197 B
C#

using NUnit.Framework;
namespace Jackett.Test
{
abstract class TestBase
{
[SetUp]
public void Setup()
{
TestUtil.SetupContainer();
}
}
}