mirror of
https://github.com/retailcrm/api-client-dotnet.git
synced 2024-11-22 12:56:03 +03:00
72cac6d6f0
* Multiversion sdk * Remove redundant code * More test coverage;
40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
using System.Collections.Specialized;
|
|
using System.Configuration;
|
|
using System.Collections.Generic;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using Retailcrm;
|
|
using Retailcrm.Versions.V5;
|
|
|
|
namespace RetailcrmUnitTest.V5
|
|
{
|
|
[TestClass]
|
|
public class SegmentsTest
|
|
{
|
|
private readonly Client _client;
|
|
|
|
public SegmentsTest()
|
|
{
|
|
NameValueCollection appSettings = ConfigurationManager.AppSettings;
|
|
_client = new Client(appSettings["apiUrl"], appSettings["apiKey"]);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Segments()
|
|
{
|
|
Response responseFiltered = _client.Segments(
|
|
new Dictionary<string, object>
|
|
{
|
|
{ "active", "1" }
|
|
},
|
|
2,
|
|
50
|
|
);
|
|
|
|
Assert.IsTrue(responseFiltered.IsSuccessfull());
|
|
Assert.IsTrue(responseFiltered.GetStatusCode() == 200);
|
|
Assert.IsInstanceOfType(responseFiltered, typeof(Response));
|
|
Assert.IsTrue(responseFiltered.GetResponse().ContainsKey("segments"));
|
|
}
|
|
}
|
|
}
|