use of no.stelar7.api.r4j.pojo.lol.league.LeagueEntry in project L4J8 by stelar7.
the class LeagueTest method testLeagueEntry.
@Test
public void testLeagueEntry() {
String id = new SpectatorBuilder().withPlatform(LeagueShard.EUW1).getFeaturedGames().get(0).getParticipants().get(0).getSummonerName();
Summoner s = new SummonerBuilder().withPlatform(LeagueShard.EUW1).withName(id).get();
List<LeagueEntry> data = new LeagueBuilder().withPlatform(LeagueShard.EUW1).withSummonerId(s.getSummonerId()).getLeagueEntries();
System.out.println(data.size());
}
use of no.stelar7.api.r4j.pojo.lol.league.LeagueEntry in project L4J8 by stelar7.
the class MatchListV5Test method testForMissingAttributes.
@Test
public void testForMissingAttributes() {
LeagueAPI leagueAPI = r4J.getLoLAPI().getLeagueAPI();
List<LeagueEntry> divis = leagueAPI.getLeagueByTierDivision(LeagueShard.EUW1, GameQueueType.RANKED_SOLO_5X5, TierDivisionType.GOLD_I, 1);
for (LeagueEntry entry : divis) {
Summoner summoner = Summoner.bySummonerId(LeagueShard.EUW1, entry.getSummonerId());
List<String> lazy = summoner.getLeagueGames().get();
for (int i = 0; i < lazy.size() && i < 5; i++) {
String match = lazy.get(i);
LOLMatch lolMatch = LOLMatch.get(LeagueShard.EUW1, match);
lolMatch.getTimeline();
}
}
}
Aggregations