use of aQute.bnd.connection.settings.ServerDTO in project bnd by bndtools.
the class SettingsParserTest method testServerSelectionWithTrust.
public void testServerSelectionWithTrust() throws Exception {
SettingsDTO settings = getSettings("server-trust-selection.xml");
assertEquals(1, settings.servers.size());
ServerDTO p = settings.servers.get(0);
assertEquals("httpbin.org", p.id);
assertNotNull(p.trust);
}
Aggregations