From 61b9eb1be03fc03a9f4bb0013a08ff44a1059503 Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Wed, 20 Apr 2016 14:25:46 +0000
Subject: [PATCH] opendj-server-legacy: added @Override + Autorefactor'ed comments
---
opendj-server-legacy/src/test/java/org/opends/server/api/AlertHandlerTestCase.java | 77 ++++++++------------------------------
1 files changed, 17 insertions(+), 60 deletions(-)
diff --git a/opendj-server-legacy/src/test/java/org/opends/server/api/AlertHandlerTestCase.java b/opendj-server-legacy/src/test/java/org/opends/server/api/AlertHandlerTestCase.java
index b62dc6b..fa90526 100644
--- a/opendj-server-legacy/src/test/java/org/opends/server/api/AlertHandlerTestCase.java
+++ b/opendj-server-legacy/src/test/java/org/opends/server/api/AlertHandlerTestCase.java
@@ -16,52 +16,33 @@
*/
package org.opends.server.api;
+import static org.testng.Assert.*;
+
import java.util.LinkedHashMap;
+import org.forgerock.i18n.LocalizableMessage;
+import org.forgerock.opendj.ldap.DN;
+import org.opends.server.TestCaseUtils;
+import org.opends.server.core.DirectoryServer;
+import org.opends.server.extensions.DummyAlertHandler;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
-import org.opends.server.TestCaseUtils;
-import org.forgerock.i18n.LocalizableMessage;
-import org.opends.server.api.AlertGenerator;
-import org.opends.server.core.DirectoryServer;
-import org.opends.server.extensions.DummyAlertHandler;
-import org.forgerock.opendj.ldap.DN;
-
-import static org.testng.Assert.*;
-
-
-
-/**
- * A set of generic alert handler test cases.
- */
+/** A set of generic alert handler test cases. */
public class AlertHandlerTestCase
extends APITestCase
implements AlertGenerator
{
-
- /**
- * The alert type to use for these tests.
- */
+ /** The alert type to use for these tests. */
public static final String ALERT_TYPE = "org.opends.test.TestAlert";
-
-
- /**
- * The alert description to use for these tests.
- */
+ /** The alert description to use for these tests. */
public static final String ALERT_DESCRIPTION =
"This is the alert description";
-
-
- /**
- * The alert message to use for these tests.
- */
+ /** The alert message to use for these tests. */
public static final LocalizableMessage ALERT_MESSAGE = LocalizableMessage.raw("This is the alert message");
-
-
/**
* Ensures that the Directory Server is running and registers with it as an
* alert generator.
@@ -76,8 +57,6 @@
DirectoryServer.registerAlertGenerator(this);
}
-
-
/**
* Tests the ability of the alert handler to send an administrative alert
* with no special configuration.
@@ -91,11 +70,7 @@
assertEquals(DummyAlertHandler.getAlertCount(), count+1);
}
-
-
- /**
- * Tests alert handler functionality when a given alert is explicitly enabled.
- */
+ /** Tests alert handler functionality when a given alert is explicitly enabled. */
@Test
public void testEnabledAlert()
{
@@ -120,8 +95,6 @@
}
}
-
-
/**
* Tests alert handler functionality when a given alert is not explicitly
* enabled but others are.
@@ -150,12 +123,7 @@
}
}
-
-
- /**
- * Tests alert handler functionality when a given alert is explicitly
- * disabled.
- */
+ /** Tests alert handler functionality when a given alert is explicitly disabled. */
@Test
public void testDisabledAlert()
{
@@ -180,8 +148,6 @@
}
}
-
-
/**
* Tests alert handler functionality when a given alert is not explicitly
* disabled but others are.
@@ -210,12 +176,7 @@
}
}
-
-
- /**
- * Tests alert handler functionality when a given alert is both enabled and
- * disabled.
- */
+ /** Tests alert handler functionality when a given alert is both enabled and disabled. */
@Test
public void testEnabledAndDisabledAlert()
{
@@ -242,8 +203,6 @@
}
}
-
-
/**
* Retrieves the DN of the configuration entry with which this alert
* generator is associated.
@@ -251,6 +210,7 @@
* @return The DN of the configuration entry with which this alert
* generator is associated.
*/
+ @Override
@Test // TestNG treats this as a test, so we annotate it to eliminate warnings
public DN getComponentEntryDN()
{
@@ -264,8 +224,6 @@
}
}
-
-
/**
* Retrieves the fully-qualified name of the Java class for this
* alert generator implementation.
@@ -273,14 +231,13 @@
* @return The fully-qualified name of the Java class for this
* alert generator implementation.
*/
+ @Override
@Test // TestNG treats this as a test, so we annotate it to eliminate warnings
public String getClassName()
{
return getClass().getName();
}
-
-
/**
* Retrieves information about the set of alerts that this generator
* may produce. The map returned should be between the notification
@@ -292,6 +249,7 @@
* @return Information about the set of alerts that this generator
* may produce.
*/
+ @Override
@Test // TestNG treats this as a test, so we annotate it to eliminate warnings
public LinkedHashMap<String,String> getAlerts()
{
@@ -302,4 +260,3 @@
return alerts;
}
}
-
--
Gitblit v1.10.0