@Test
public void testSSLBuild() {
PropertyOAuthAppSettingsBuilder builderOAuthApp = new PropertyOAuthAppSettingsBuilder();
builderOAuthApp.bundleName("agoravassl");
OAuthAppSettings settings = builderOAuthApp.build();
Assert.assertEquals(settings.getApiKey(), "dummy");
Assert.assertEquals(settings.getApiSecret(), "dummySecret");
Assert.assertEquals(settings.getScope(), "dummyScope");
Assert.assertEquals(settings.getCallback(), "https://dummyCallback");