From 19c1698a1c9d576637a80b20afa080db5e16addb Mon Sep 17 00:00:00 2001
From: davidely <davidely@localhost>
Date: Sun, 03 Sep 2006 14:40:08 +0000
Subject: [PATCH] Migrating to TestNG 5.1 from 4.7. Most of the required changes are to address annotations that were deprecated.
---
opends/tests/unit-tests-testng/src/server/org/opends/server/backends/jeb/TestBackendImpl.java | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/opends/tests/unit-tests-testng/src/server/org/opends/server/backends/jeb/TestBackendImpl.java b/opends/tests/unit-tests-testng/src/server/org/opends/server/backends/jeb/TestBackendImpl.java
index 5af1f81..ccea5d5 100644
--- a/opends/tests/unit-tests-testng/src/server/org/opends/server/backends/jeb/TestBackendImpl.java
+++ b/opends/tests/unit-tests-testng/src/server/org/opends/server/backends/jeb/TestBackendImpl.java
@@ -40,8 +40,9 @@
import org.opends.server.util.Base64;
import org.opends.server.util.LDIFReader;
import org.opends.server.util.StaticUtils;
-import org.testng.annotations.Configuration;
import org.testng.annotations.Test;
+import org.testng.annotations.BeforeClass;
+import org.testng.annotations.AfterClass;
/**
* BackendImpl Tester.
@@ -68,7 +69,7 @@
* @throws Exception
* If the environment could not be set up.
*/
- @Configuration(beforeTestClass = true)
+ @BeforeClass
public void setUp() throws Exception {
InitialDirectoryServerFixture.FACTORY.setUp();
@@ -93,7 +94,7 @@
* @throws Exception
* If the environment could not be finalized.
*/
- @Configuration(afterTestClass = true)
+ @AfterClass
public void tearDown() throws Exception {
InitialDirectoryServerFixture.FACTORY.tearDown();
--
Gitblit v1.10.0