mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

kenneth_suter
15.55.2007 83005990362480c1c84fac9682e74de3325c9727
fixed broken test; made package a dependency of testall target so that package dependant tests would be run
2 files modified
6 ■■■■ changed files
opends/build.xml 2 ●●● patch | view | raw | blame | history
opends/tests/unit-tests-testng/src/server/org/opends/quicksetup/InstallationTest.java 4 ●●●● patch | view | raw | blame | history
opends/build.xml
@@ -1157,7 +1157,7 @@
  <!-- 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>
opends/tests/unit-tests-testng/src/server/org/opends/quicksetup/InstallationTest.java
@@ -238,9 +238,9 @@
  /**
   * Tests the history directory is available.
   */
  @Test(enabled=false)
  @Test
  public void testGetHistoryDirectory() {
    assertExistentFile(installation.getHistoryDirectory());
    assertNonexistentFile(installation.getHistoryDirectory());
  }
  /**