mirror of
https://github.com/retailcrm/api-client-dotnet.git
synced 2024-11-22 21:06:02 +03:00
72cac6d6f0
* Multiversion sdk * Remove redundant code * More test coverage;
37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Specialized;
|
|
using System.Configuration;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using Retailcrm.Versions.V5;
|
|
|
|
namespace RetailcrmUnitTest.V5
|
|
{
|
|
[TestClass]
|
|
public class TelephonyTest
|
|
{
|
|
private readonly Client _client;
|
|
private readonly NameValueCollection _appSettings;
|
|
|
|
public TelephonyTest()
|
|
{
|
|
_appSettings = ConfigurationManager.AppSettings;
|
|
_client = new Client(_appSettings["apiUrl"], _appSettings["apiKey"]);
|
|
}
|
|
|
|
[TestMethod]
|
|
[ExpectedException(typeof(ArgumentException), "This method is unavailable in API V5")]
|
|
public void TelephonySettingsGetArgumentExeption()
|
|
{
|
|
_client.TelephonySettingsGet("anycode");
|
|
}
|
|
|
|
[TestMethod]
|
|
[ExpectedException(typeof(ArgumentException), "This method is unavailable in API V5")]
|
|
public void TelephonySettingsGetTelephonySettingsEditArgumentExeption()
|
|
{
|
|
_client.TelephonySettingsEdit(new Dictionary<string, object>());
|
|
}
|
|
}
|
|
}
|