mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Refactored IntegrationTests to work with Nunit3 VS adapter.
This commit is contained in:
13
src/NzbDrone.Integration.Test/Client/CommandClient.cs
Normal file
13
src/NzbDrone.Integration.Test/Client/CommandClient.cs
Normal 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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user