use of com.faforever.api.config.FafApiProperties in project faf-java-api by FAForever.
the class ClanEnricherListenerTest method setUp.
@Before
public void setUp() throws Exception {
instance = new ClanEnricherListener();
FafApiProperties fafApiProperties = new FafApiProperties();
instance.init(fafApiProperties);
fafApiProperties.getClan().setWebsiteUrlFormat("http://example.com/%s");
}
use of com.faforever.api.config.FafApiProperties in project faf-java-api by FAForever.
the class FeaturedModEnricherTest method setUp.
@Before
public void setUp() {
FafApiProperties fafApiProperties = new FafApiProperties();
fafApiProperties.getFeaturedMod().setBireusUrlFormat("http://example.com/%s");
featuredModEnricher = new FeaturedModEnricher();
featuredModEnricher.init(fafApiProperties);
}
Aggregations