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

Gaetan Boismal
06.18.2015 34df431587b9ad32bb2759d6d130533793d32550
opendj-server-legacy/src/test/java/org/opends/server/util/PackageInfoTestCase.java
@@ -149,31 +149,6 @@
  /**
   * Retrieves a set of File objects that point to directories that contain
   * DSML gateway source.
   *
   * @return  A set of File objects that point to directories that contain
   *          DSML gateway source.
   */
  @DataProvider(name = "dsmlSourceDirectories")
  public Object[][] getDSMLSourceDirectories()
  {
    File dsmlSourceRoot = new File(sourceRoot, "dsml");
    ArrayList<File> sourceDirs = new ArrayList<>();
    getSourceDirectories(dsmlSourceRoot, sourceDirs);
    Object[][] returnArray = new Object[sourceDirs.size()][1];
    for (int i=0; i < returnArray.length; i++)
    {
      returnArray[i][0] = sourceDirs.get(i);
    }
    return returnArray;
  }
  /**
   * Retrieves a set of File objects that point to directories that contain
   * GUI tools source.
   *
   * @return  A set of File objects that point to directories that contain
@@ -329,21 +304,6 @@
  /**
   * Ensure that all DSML gateway source file packages include a
   * package-info.java file.
   *
   * @param  sourceDirectory  The directory for which to make the determination.
   */
  @Test(dataProvider="dsmlSourceDirectories")
  public void testDSMLPackageInfoExists(File sourceDirectory)
         throws Exception
  {
    checkPackageInfoFileExistsInternal(sourceDirectory);
  }
  /**
   * Ensure that all GUI tools source file packages include a package-info.java
   * file.
   *