public async Task GetChampionMasteryScoreAsyncTest()
        {
            IRiotClient client = new RiotClient();
            var         score  = await client.GetChampionMasteryScoreAsync(encryptedSummonerId);

            Assert.That(score, Is.AtLeast(1));
        }
        public async Task GetChampionMasteryScoreAsyncTest()
        {
            IRiotClient client = new RiotClient();
            var         score  = await client.GetChampionMasteryScoreAsync(34172230L);

            Assert.That(score, Is.AtLeast(1));
        }
Exemple #3
0
        public async Task GetChampionMasteryScoreAsyncTest()
        {
            IRiotClient client = new RiotClient();
            var score = await client.GetChampionMasteryScoreAsync(34172230L);

            Assert.That(score, Is.AtLeast(1));
        }