mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
Implement BakaBT, change Console to not build as x64, Add test framework
This commit is contained in:
18
src/Jackett.Test/TestBase.cs
Normal file
18
src/Jackett.Test/TestBase.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using NUnit.Framework;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace JackettTest
|
||||
{
|
||||
abstract class TestBase
|
||||
{
|
||||
[SetUp]
|
||||
public void Setup()
|
||||
{
|
||||
TestUtil.SetupContainer();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user