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,46 @@
using Jackett.Services;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Jackett.Indexers;
using Newtonsoft.Json.Linq;
namespace JackettTest
{
class TestIndexerManagerServiceHelper : IIndexerManagerService
{
public JToken LastSavedConfig { get; set; }
public void DeleteIndexer(string name)
{
throw new NotImplementedException();
}
public IEnumerable<IIndexer> GetAllIndexers()
{
throw new NotImplementedException();
}
public IIndexer GetIndexer(string name)
{
throw new NotImplementedException();
}
public void InitIndexers()
{
throw new NotImplementedException();
}
public void SaveConfig(IIndexer indexer, JToken obj)
{
LastSavedConfig = obj;
}
public Task TestIndexer(string name)
{
throw new NotImplementedException();
}
}
}