| | |
| | | * |
| | | * |
| | | * Copyright 2006-2010 Sun Microsystems, Inc. |
| | | * Portions Copyright 2011 ForgeRock AS |
| | | */ |
| | | package org.opends.server.backends.jeb; |
| | | |
| | |
| | | // This test suite depends on having the schema available, so we'll make |
| | | // sure the server is started. |
| | | TestCaseUtils.startServer(); |
| | | // Enable the backend |
| | | TestCaseUtils.enableBackend(beID); |
| | | |
| | | tempDir = TestCaseUtils.createTemporaryDirectory("jebimporttest"); |
| | | homeDirName = tempDir.getAbsolutePath(); |
| | |
| | | @AfterClass |
| | | public void cleanUp() throws Exception |
| | | { |
| | | TestCaseUtils.disableBackend(beID); |
| | | TestCaseUtils.deleteDirectory(tempDir); |
| | | } |
| | | |