OPENDJ-346 Consider using java.util.ServiceLoader for loading extensions and requesting transport implementations
As a consequence of fix of issue with StaticUtils#getProvider, reverted change in tests: there is no need for a specific class loader.
1 files deleted
1 files modified
| | |
| | | */ |
| | | package com.forgerock.opendj.ldap.tools; |
| | | |
| | | import static com.forgerock.opendj.ldap.tools.TestCaseUtils.getLDAPTestOptions; |
| | | |
| | | import static org.fest.assertions.Assertions.*; |
| | | |
| | | import java.io.File; |
| | |
| | | public void init() throws Exception { |
| | | MockitoAnnotations.initMocks(this); |
| | | argParser = new ArgumentParser("unused", new LocalizableMessageBuilder().toMessage(), false); |
| | | connectionFactoryProvider = new ConnectionFactoryProvider(argParser, app, getLDAPTestOptions()); |
| | | connectionFactoryProvider = new ConnectionFactoryProvider(argParser, app); |
| | | } |
| | | |
| | | @Test |