Skip to content

Commit

Permalink
add test for LeagueV4 RU d3atomiz3d "CHERRY" QueueType
Browse files Browse the repository at this point in the history
  • Loading branch information
MingweiSamuel committed Jan 4, 2024
1 parent 95741ea commit 674a80a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/Camille.RiotGames.Test/ApiLeagueV4Test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
}

0 comments on commit 674a80a

Please sign in to comment.