Refactored IntegrationTests to work with Nunit3 VS adapter.

This commit is contained in:
Taloth Saldono
2016-04-04 19:40:51 +02:00
parent 2fa3873503
commit 71ecc96c70
36 changed files with 804 additions and 318 deletions

View File

@@ -0,0 +1,13 @@
using NzbDrone.Api.Commands;
using RestSharp;
namespace NzbDrone.Integration.Test.Client
{
public class CommandClient : ClientBase<CommandResource>
{
public CommandClient(IRestClient restClient, string apiKey)
: base(restClient, apiKey)
{
}
}
}