From 15f4f0fa7c142be425f39647461c438d0e68103f Mon Sep 17 00:00:00 2001 From: Mei Su Date: Fri, 6 Apr 2018 17:08:06 -0400 Subject: [PATCH] Add junit coverage to TimedOutException class Introduce junit-tests for TimedOutException class Issue-ID: APPC-834 Change-Id: If4ba78735064106391d9354b0a7036bd8dd060e6 Signed-off-by: Mei Su --- .../onap/appc/ccadaptor/TimedOutExceptionTest.java | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 appc-config/appc-config-adaptor/provider/src/test/java/org/onap/appc/ccadaptor/TimedOutExceptionTest.java diff --git a/appc-config/appc-config-adaptor/provider/src/test/java/org/onap/appc/ccadaptor/TimedOutExceptionTest.java b/appc-config/appc-config-adaptor/provider/src/test/java/org/onap/appc/ccadaptor/TimedOutExceptionTest.java new file mode 100644 index 000000000..e9e054e6e --- /dev/null +++ b/appc-config/appc-config-adaptor/provider/src/test/java/org/onap/appc/ccadaptor/TimedOutExceptionTest.java @@ -0,0 +1,36 @@ +/*- +* ============LICENSE_START======================================================= +* ONAP : APPC +* ================================================================================ +* Copyright (C) 2018 AT&T Intellectual Property. All rights reserved. +* ============================================================================= +* 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.appc.ccadaptor; + +import org.junit.Assert; + +import org.junit.Test; + +public class TimedOutExceptionTest { + + @Test + public void testTimedOutException() { + String message = "my test message"; + TimedOutException timedOutExp = new TimedOutException(message); + Assert.assertEquals(message, timedOutExp.getLocalizedMessage()); + Assert.assertEquals(message, timedOutExp.getMessage()); + } + +} -- 2.16.6