diff --git a/tests/Camille.RiotGames.Test/ApiLeagueV4Test.cs b/tests/Camille.RiotGames.Test/ApiLeagueV4Test.cs index b4b630a1..43f686cd 100644 --- a/tests/Camille.RiotGames.Test/ApiLeagueV4Test.cs +++ b/tests/Camille.RiotGames.Test/ApiLeagueV4Test.cs @@ -16,5 +16,13 @@ public async Task GetChallengerLeagueAsync() Assert.IsTrue(entry.Wins > 0); } } + + [TestMethod] + public async Task GetLeagueEntriesAsync() + { + var summoner = await Api.SummonerV4().GetBySummonerNameAsync(PlatformRoute.RU, "d3atomiz3d"); + var entries = await Api.LeagueV4().GetLeagueEntriesForSummonerAsync(PlatformRoute.RU, summoner.Id); + var _ = entries; + } } }