mirror of
https://github.com/retailcrm/api-client-dotnet.git
synced 2025-04-06 06:33:33 +03:00
39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
using System.Collections.Specialized;
|
|
using System.Configuration;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using Retailcrm;
|
|
|
|
namespace RetailcrmUnitTest
|
|
{
|
|
[TestClass]
|
|
public class ApiTest
|
|
{
|
|
private readonly Connection _connection;
|
|
|
|
public ApiTest()
|
|
{
|
|
NameValueCollection appSettings = ConfigurationManager.AppSettings;
|
|
_connection = new Connection(appSettings["apiUrl"], appSettings["apiKey"]);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Versions()
|
|
{
|
|
Response response = _connection.Versions();
|
|
|
|
Assert.IsTrue(response.IsSuccessfull());
|
|
Assert.IsInstanceOfType(response, typeof(Response));
|
|
Assert.IsTrue(response.GetResponse().ContainsKey("versions"));
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Credentials()
|
|
{
|
|
Response response = _connection.Credentials();
|
|
|
|
Assert.IsTrue(response.IsSuccessfull());
|
|
Assert.IsInstanceOfType(response, typeof(Response));
|
|
Assert.IsTrue(response.GetResponse().ContainsKey("credentials"));
|
|
}
|
|
}
|
|
}
|