Added Junit For DMaaPConsumerFailure.java 99/79099/1
authorSudarshan Kumar <sudars19@in.ibm.com>
Mon, 25 Feb 2019 12:05:20 +0000 (17:35 +0530)
committerSudarshan Kumar <sudars19@in.ibm.com>
Mon, 25 Feb 2019 12:06:14 +0000 (17:36 +0530)
Added Junit For DMaaPConsumerFailure.java

Issue-ID: SO-1480
Change-Id: I1eff422baaf4e4475e3989d34f5dd591b1bfe4b1
Signed-off-by: Sudarshan Kumar <sudars19@in.ibm.com>
common/src/test/java/org/onap/so/client/dmaap/exceptions/DMaaPConsumerFailureTest.java [new file with mode: 0644]

diff --git a/common/src/test/java/org/onap/so/client/dmaap/exceptions/DMaaPConsumerFailureTest.java b/common/src/test/java/org/onap/so/client/dmaap/exceptions/DMaaPConsumerFailureTest.java
new file mode 100644 (file)
index 0000000..de6c8b1
--- /dev/null
@@ -0,0 +1,36 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP - SO
+ * ================================================================================
+ * Copyright (C) 2019 IBM.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+package org.onap.so.client.dmaap.exceptions;
+
+import org.junit.Assert;
+import org.junit.Test;
+
+public class DMaaPConsumerFailureTest {
+
+    @Test
+    public void testRequestValidationException() {
+        DMaaPConsumerFailure dMaaPConsumerFailure = new DMaaPConsumerFailure("DMaaPConsumerFailure");
+        Assert.assertEquals("DMaaPConsumerFailure", dMaaPConsumerFailure.getMessage());
+
+        DMaaPConsumerFailure dMaaPConsumerFailureObj = new DMaaPConsumerFailure();
+        Assert.assertEquals(null, dMaaPConsumerFailureObj.getMessage());
+    }
+
+}