diff options
author | Sudarshan Kumar <sudars19@in.ibm.com> | 2019-02-25 17:35:20 +0530 |
---|---|---|
committer | Sudarshan Kumar <sudars19@in.ibm.com> | 2019-02-25 17:36:14 +0530 |
commit | 6a4e4d62bfa618fdb2926ba9fce7fafc4a346fe9 (patch) | |
tree | 542c5878ae794b5ba19a3281bfec82845a4f9b60 /common/src | |
parent | 57af0e334073b329ca9f48b353ab4cc3bd2027a8 (diff) |
Added Junit For DMaaPConsumerFailure.java
Added Junit For DMaaPConsumerFailure.java
Issue-ID: SO-1480
Change-Id: I1eff422baaf4e4475e3989d34f5dd591b1bfe4b1
Signed-off-by: Sudarshan Kumar <sudars19@in.ibm.com>
Diffstat (limited to 'common/src')
-rw-r--r-- | common/src/test/java/org/onap/so/client/dmaap/exceptions/DMaaPConsumerFailureTest.java | 36 |
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()); + } + +} |