Example #1
0
        public void GetChampionMasteryAsync_Test()
        {
            const int lucianId        = 236;
            var       championMastery = api.GetChampionMasteryAsync(Platform.NA1, id, lucianId).Result;

            Assert.IsNotNull(championMastery);
            Assert.AreEqual(id, championMastery.PlayerId);
            Assert.AreEqual(lucianId, championMastery.ChampionId);
            Assert.AreEqual(6, championMastery.ChampionLevel);
        }