using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Xunit; namespace Centron.APIs.ITscopeDataAccess.Tests { public class Test { [Fact] public async Task MainTest() { var api = new ITscopeApi("test@c-entron.de", "Yi6d4_AeT1LW8SQwMWBoSnLGukjCLFw-xdyj6xsKhEw"); var a = await api.GetApiKeyQuotaAsync(); Assert.Equal(-1, a.PlatformAccess); Assert.Equal(-1, a.ApiAccess); } } }