Implement BakaBT, change Console to not build as x64, Add test framework

This commit is contained in:
KZ
2015-07-26 00:51:55 +01:00
parent 2673d5a796
commit a2ce89d2da
25 changed files with 2395 additions and 70 deletions

View 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();
}
}
}