From a5ce1b53bf9304c08bb51639b48bb77085cd62b3 Mon Sep 17 00:00:00 2001
From: davidely <davidely@localhost>
Date: Sun, 02 Sep 2007 04:00:42 +0000
Subject: [PATCH] There are several improvements to the unit test framework in this commit.

---
 opends/tests/unit-tests-testng/src/server/org/opends/quicksetup/QuickSetupTestCase.java |   16 ++--------------
 1 files changed, 2 insertions(+), 14 deletions(-)

diff --git a/opends/tests/unit-tests-testng/src/server/org/opends/quicksetup/QuickSetupTestCase.java b/opends/tests/unit-tests-testng/src/server/org/opends/quicksetup/QuickSetupTestCase.java
index 3b8bd7e..a86efd7 100644
--- a/opends/tests/unit-tests-testng/src/server/org/opends/quicksetup/QuickSetupTestCase.java
+++ b/opends/tests/unit-tests-testng/src/server/org/opends/quicksetup/QuickSetupTestCase.java
@@ -30,30 +30,18 @@
 import org.testng.annotations.BeforeSuite;
 import org.testng.annotations.AfterSuite;
 import org.opends.server.TestCaseUtils;
+import org.opends.server.DirectoryServerTestCase;
 
 import java.io.IOException;
 
 /**
  *
  */
-public class QuickSetupTestCase {
-
-  @BeforeSuite
-  public final void suppressOutput() {
-    TestCaseUtils.suppressOutput();
-  }
-
+public class QuickSetupTestCase extends DirectoryServerTestCase {
   @BeforeSuite
   public final void initServer()
           throws IOException, ApplicationException, InterruptedException
   {
     TestUtilities.initServer();
   }
-
-  @AfterSuite
-  public final void shutdownServer() throws ApplicationException {
-    TestUtilities.stopServer();
-    TestCaseUtils.unsupressOutput();
-  }  
-
 }

--
Gitblit v1.10.0