enhance test coverage under appc-request-handler 97/29197/3
authorTaka <tc012c@att.com>
Thu, 25 Jan 2018 16:41:43 +0000 (11:41 -0500)
committerSkip Wonnell <skip@att.com>
Mon, 29 Jan 2018 20:05:40 +0000 (20:05 +0000)
Change-Id: Ifa491d78dd2a65e3e3cbd25d09d8eda7a983a398
Signed-off-by: Taka <tc012c@att.com>
Issue-ID: APPC-487

appc-dispatcher/appc-request-handler/appc-request-handler-core/src/test/java/org/onap/appc/requesthandler/constant/ConstantsTest.java [new file with mode: 0644]

diff --git a/appc-dispatcher/appc-request-handler/appc-request-handler-core/src/test/java/org/onap/appc/requesthandler/constant/ConstantsTest.java b/appc-dispatcher/appc-request-handler/appc-request-handler-core/src/test/java/org/onap/appc/requesthandler/constant/ConstantsTest.java
new file mode 100644 (file)
index 0000000..4947f93
--- /dev/null
@@ -0,0 +1,41 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP : APPC
+ * ================================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * Copyright (C) 2017 Amdocs
+ * =============================================================================
+ * 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.
+ *
+ * ECOMP is a trademark and service mark of AT&T Intellectual Property.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.appc.requesthandler.constant;
+
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+import java.util.concurrent.TimeUnit;
+
+public class ConstantsTest {
+
+    @Test
+    public void TestConstants(){
+
+        Constants Con = new Constants();
+        Assert.assertEquals(900000, Con.DEFAULT_IDLE_TIMEOUT);
+
+    }
+}