| | |
| | | /** |
| | | * An abstract class that all Replication unit test should extend. |
| | | */ |
| | | @Test(groups = { "precommit", "replication" }) |
| | | @Test(groups = { "precommit", "replication" }, sequential = true) |
| | | public abstract class ReplicationTestCase extends DirectoryServerTestCase |
| | | { |
| | | |
| | |
| | | public void setUp() throws Exception |
| | | { |
| | | // This test suite depends on having the schema available. |
| | | TestCaseUtils.startServer(); |
| | | TestCaseUtils.restartServer(); |
| | | |
| | | // Create an internal connection |
| | | connection = InternalClientConnection.getRootConnection(); |
| | |
| | | { |
| | | cleanConfigEntries(); |
| | | cleanRealEntries(); |
| | | |
| | | entryList = null; |
| | | configEntryList = null; |
| | | } |
| | | |
| | | /** |