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

                Assert.NotEmpty(leagues);
            }
        }