Files

19 lines
274 B
C#
Raw Permalink Normal View History

2013-08-26 01:07:19 +02:00
using Xunit;
2013-08-25 14:25:21 +02:00
namespace UptimeSharp.Tests
{
public class ClientTest : TestsBase
2013-08-25 14:25:21 +02:00
{
public ClientTest() : base() { }
2013-08-25 14:25:21 +02:00
2013-08-26 01:07:19 +02:00
[Fact]
2013-08-25 14:25:21 +02:00
public void Initialize()
{
2013-12-10 22:32:27 +01:00
Assert.Null(client.lastResponseData);
2013-08-25 14:25:21 +02:00
2013-08-26 01:07:19 +02:00
Assert.Equal(APIKey, client.ApiKey);
2013-08-25 14:25:21 +02:00
}
}
}