public async Task NotEmpty()
		{
			using (var client = new DotaApiClient(this.ApiKey))
			{
				var leagues = await client.GetLiveLeagueGames();

				Assert.NotEmpty(leagues);
			}
		}
        public async Task NotEmpty()
        {
            using (var client = new DotaApiClient(this.ApiKey))
            {
                var leagues = await client.GetLiveLeagueGames();

                Assert.NotEmpty(leagues);
            }
        }