aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMei Su <ms6523@att.com>2018-04-06 17:08:06 -0400
committerTakamune Cho <tc012c@att.com>2018-04-09 00:36:01 +0000
commitacaef825011dc0153d677e32952cc325cd350f1e (patch)
tree613eb8b71ccd74e01b309b592d73ddf7e5d1818f
parent393648ea985f45a020dc69edfa729ac029cebe4f (diff)
Add junit coverage to TimedOutException class
Introduce junit-tests for TimedOutException class Issue-ID: APPC-834 Change-Id: If4ba78735064106391d9354b0a7036bd8dd060e6 Signed-off-by: Mei Su <ms6523@att.com>
-rw-r--r--appc-config/appc-config-adaptor/provider/src/test/java/org/onap/appc/ccadaptor/TimedOutExceptionTest.java36
1 files changed, 36 insertions, 0 deletions
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());
+ }
+
+}