mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00

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
14 lines
197 B
C#
14 lines
197 B
C#
using NUnit.Framework;
|
|
|
|
namespace Jackett.Test
|
|
{
|
|
abstract class TestBase
|
|
{
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
TestUtil.SetupContainer();
|
|
}
|
|
}
|
|
}
|