mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
19 lines
312 B
C#
19 lines
312 B
C#
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();
|
|
}
|
|
}
|
|
}
|