From 6a4e4d62bfa618fdb2926ba9fce7fafc4a346fe9 Mon Sep 17 00:00:00 2001 From: Sudarshan Kumar Date: Mon, 25 Feb 2019 17:35:20 +0530 Subject: Added Junit For DMaaPConsumerFailure.java Added Junit For DMaaPConsumerFailure.java Issue-ID: SO-1480 Change-Id: I1eff422baaf4e4475e3989d34f5dd591b1bfe4b1 Signed-off-by: Sudarshan Kumar --- .../dmaap/exceptions/DMaaPConsumerFailureTest.java | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 common/src/test/java/org/onap/so/client/dmaap/exceptions/DMaaPConsumerFailureTest.java (limited to 'common') 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()); + } + +} -- cgit 1.2.3-korg