aboutsummaryrefslogtreecommitdiffstats
path: root/music-rest/src/test/java/org/onap/music/JerseyConfigTest.java
diff options
context:
space:
mode:
authorBrendan Tschaen <ctschaen@att.com>2020-03-02 22:22:41 +0000
committerGerrit Code Review <gerrit@onap.org>2020-03-02 22:22:41 +0000
commit4019754f9d0df4d9cc5a9338b1e6888d110710fd (patch)
treed91a3304d3a4c036695ab17f45f9b7c649d24099 /music-rest/src/test/java/org/onap/music/JerseyConfigTest.java
parent14bd1b0fdf2f494b420623d1b5f7a7d966ec7ad9 (diff)
parent7fda9bd76272ba4712fa810632ce252dfafe3363 (diff)
Merge "Junit test case coverage for some classes in music-rest"
Diffstat (limited to 'music-rest/src/test/java/org/onap/music/JerseyConfigTest.java')
-rw-r--r--music-rest/src/test/java/org/onap/music/JerseyConfigTest.java39
1 files changed, 39 insertions, 0 deletions
diff --git a/music-rest/src/test/java/org/onap/music/JerseyConfigTest.java b/music-rest/src/test/java/org/onap/music/JerseyConfigTest.java
new file mode 100644
index 00000000..d7475a9d
--- /dev/null
+++ b/music-rest/src/test/java/org/onap/music/JerseyConfigTest.java
@@ -0,0 +1,39 @@
+/*******************************************************************************
+ * ============LICENSE_START==========================================
+ * org.onap.music
+ * ===================================================================
+ * Copyright (c) 2019 AT&T Intellectual Property
+ * ===================================================================
+ * 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.music;
+
+import org.junit.Before;
+import org.junit.Test;
+
+public class JerseyConfigTest {
+ JerseyConfig jerseyConfig;
+
+ @Before
+ public void setup() {
+ jerseyConfig = new JerseyConfig();
+ }
+
+ @Test
+ public void testInitJerseyConfig() {
+ jerseyConfig.init();
+ }
+}