summaryrefslogtreecommitdiffstats
path: root/common/src
diff options
context:
space:
mode:
authorSteve Smokowski <ss835w@att.com>2019-02-25 13:54:36 +0000
committerGerrit Code Review <gerrit@onap.org>2019-02-25 13:54:36 +0000
commit4e675f5212bfc47a5869d9235cc55195b3f316bb (patch)
tree6d0dcf144408d1f73aa676ea035982d62523ad6d /common/src
parent93aa9e4661899c42d599e08c6a1ae8dcfe9159a8 (diff)
parent6a4e4d62bfa618fdb2926ba9fce7fafc4a346fe9 (diff)
Merge "Added Junit For DMaaPConsumerFailure.java"
Diffstat (limited to 'common/src')
-rw-r--r--common/src/test/java/org/onap/so/client/dmaap/exceptions/DMaaPConsumerFailureTest.java36
1 files changed, 36 insertions, 0 deletions
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
index 0000000000..de6c8b1219
--- /dev/null
+++ b/common/src/test/java/org/onap/so/client/dmaap/exceptions/DMaaPConsumerFailureTest.java
@@ -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());
+ }
+
+}