Added first real test

This commit is contained in:
tidusjar 2016-03-09 11:21:06 +00:00
parent f7a6614748
commit 68850fd8b7
29 changed files with 461 additions and 22 deletions

View file

@ -26,6 +26,7 @@
#endregion
using System;
using PlexRequests.Api.Interfaces;
using PlexRequests.Api.Models;
using PlexRequests.Helpers;
@ -33,13 +34,13 @@ using RestSharp;
namespace PlexRequests.Api
{
public class PlexApi
public class PlexApi : IPlexApi
{
static PlexApi()
{
Version = AssemblyHelper.GetAssemblyVersion();
}
private static string Version { get; set; }
private static string Version { get; }
public PlexAuthentication SignIn(string username, string password)
{