fixed broken test; made package a dependency of testall target so that package dependant tests would be run
| | |
| | | |
| | | <!-- Execute all of the Directory Server TestNG unit tests in text mode. --> |
| | | <target name="testall" |
| | | depends="enableTestNGAssertions,prepdefaultalltest,testinit,runtests" |
| | | depends="enableTestNGAssertions,prepdefaultalltest,package,testinit,runtests" |
| | | description="Run all of the TestNG tests (including 'slow' ones) with assertions enabled. See 'testwithcoverage' for properties you can set."> |
| | | </target> |
| | | |
| | |
| | | /** |
| | | * Tests the history directory is available. |
| | | */ |
| | | @Test(enabled=false) |
| | | @Test |
| | | public void testGetHistoryDirectory() { |
| | | assertExistentFile(installation.getHistoryDirectory()); |
| | | assertNonexistentFile(installation.getHistoryDirectory()); |
| | | } |
| | | |
| | | /** |