Checkpoint commit for OPENDJ-175: Decouple OpenDJ LDAP SDK from Grizzly
* Renamed LDAPConnectionFactoryTestCase and LDAPListenerTestCase to GrizzlyXXXTestCase to match src classes
| File was renamed from opendj3/opendj-grizzly/src/test/java/com/forgerock/opendj/grizzly/LDAPConnectionFactoryTestCase.java |
| | |
| | | * Tests the {@link LDAPConnectionFactory} class. |
| | | */ |
| | | @SuppressWarnings("javadoc") |
| | | public class LDAPConnectionFactoryTestCase extends SdkTestCase { |
| | | public class GrizzlyLDAPConnectionFactoryTestCase extends SdkTestCase { |
| | | // Test timeout for tests which need to wait for network events. |
| | | private static final long TEST_TIMEOUT = 30L; |
| | | |
| File was renamed from opendj3/opendj-grizzly/src/test/java/com/forgerock/opendj/grizzly/LDAPListenerTestCase.java |
| | |
| | | /** |
| | | * Tests the LDAPListener class. |
| | | */ |
| | | public class LDAPListenerTestCase extends SdkTestCase { |
| | | public class GrizzlyLDAPListenerTestCase extends SdkTestCase { |
| | | |
| | | private static class MockServerConnection implements ServerConnection<Integer> { |
| | | final AsynchronousFutureResult<Throwable, ResultHandler<Throwable>> connectionError = |