use of no.stelar7.api.r4j.basic.cache.impl.FileSystemCacheProvider in project L4J8 by stelar7.
the class StaticTest method testLanguages.
@Test
public void testLanguages() {
DataCall.setCacheProvider(new FileSystemCacheProvider());
List<String> strings = api.getLanguages();
}
use of no.stelar7.api.r4j.basic.cache.impl.FileSystemCacheProvider in project L4J8 by stelar7.
the class StaticTest method testProfileIcons.
@Test
public void testProfileIcons() {
DataCall.setCacheProvider(new FileSystemCacheProvider());
Map<Long, ProfileIconDetails> data = api.getProfileIcons();
}
use of no.stelar7.api.r4j.basic.cache.impl.FileSystemCacheProvider in project L4J8 by stelar7.
the class StaticTest method testPerkPathId.
@Test
public void testPerkPathId() {
DataCall.setCacheProvider(new FileSystemCacheProvider());
PerkPath paths = api.getPerkPath(8000);
}
use of no.stelar7.api.r4j.basic.cache.impl.FileSystemCacheProvider in project L4J8 by stelar7.
the class StaticTest method testSummonerSpellSingle.
@Test
public void testSummonerSpellSingle() {
DataCall.setCacheProvider(new FileSystemCacheProvider());
StaticSummonerSpell list = api.getSummonerSpell(21);
Assertions.assertEquals(21, list.getId());
}
use of no.stelar7.api.r4j.basic.cache.impl.FileSystemCacheProvider in project L4J8 by stelar7.
the class StaticTest method testChampionList.
@Test
public void testChampionList() {
DataCall.setCacheProvider(new FileSystemCacheProvider());
Map<Integer, StaticChampion> list = api.getChampions();
Assertions.assertTrue(list.size() > 100, "less than 100?");
}
Aggregations