From b9af8f181b7495cb343c280db4ce8979a04bfc91 Mon Sep 17 00:00:00 2001
From: boli <boli@localhost>
Date: Tue, 12 Sep 2006 23:12:27 +0000
Subject: [PATCH] This commit changes several aspects of the unit test infrastructure:

---
 opends/tests/unit-tests-testng/src/server/org/opends/server/ConfigurationFixture.java |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/opends/tests/unit-tests-testng/src/server/org/opends/server/ConfigurationFixture.java b/opends/tests/unit-tests-testng/src/server/org/opends/server/ConfigurationFixture.java
index 6d166cf..22ca2ab 100644
--- a/opends/tests/unit-tests-testng/src/server/org/opends/server/ConfigurationFixture.java
+++ b/opends/tests/unit-tests-testng/src/server/org/opends/server/ConfigurationFixture.java
@@ -37,6 +37,7 @@
 import org.opends.server.core.DirectoryServer;
 
 /**
+ *
  * This fixture makes sure that a directory server instance is available
  * with a configuration environment loaded from the source tree's
  * resource directory.
@@ -49,6 +50,7 @@
   /**
    * A factory used to obtain the configuration fixture instance.
    */
+  @Deprecated
   public static final FixtureFactory<ConfigurationFixture> FACTORY;
 
   static {
@@ -62,6 +64,7 @@
   /**
    * Internal factory implementation.
    */
+  @Deprecated
   private static final class Factory implements
       FixtureFactory<ConfigurationFixture> {
 
@@ -71,6 +74,7 @@
     /**
      * {@inheritDoc}
      */
+    @Deprecated
     public ConfigurationFixture setUp() throws Exception {
       // This fixture requires the initial directory server fixture.
       InitialDirectoryServerFixture.FACTORY.setUp();
@@ -100,6 +104,7 @@
     /**
      * {@inheritDoc}
      */
+    @Deprecated
     public void tearDown() throws Exception {
       // Clean up configuration directories.
       try {
@@ -123,6 +128,7 @@
    * @param instanceRoot
    *          The name of the temporary instance root.
    */
+  @Deprecated
   private ConfigurationFixture(File instanceRoot) {
     this.instanceRoot = instanceRoot;
   }
@@ -132,6 +138,7 @@
    *
    * @return The temporary instance root.
    */
+  @Deprecated
   public File getInstanceRoot() {
     return instanceRoot;
   }

--
Gitblit v1.10.0