aboutsummaryrefslogtreecommitdiffstats
path: root/aai-core/src/test/java/org/onap/aai/restcore/CustomJacksonJaxBJsonProviderTest.java
diff options
context:
space:
mode:
authorYoo, Brian (by703c) <by703c@att.com>2020-03-12 14:20:05 -0400
committerJames Forsyth <jf2512@att.com>2020-03-12 19:17:02 +0000
commit67b5d58cad5dfc1a7b075a685bb4e65c3dd5f632 (patch)
tree8082c0a30863d79c77c38a108c870aec192d43c6 /aai-core/src/test/java/org/onap/aai/restcore/CustomJacksonJaxBJsonProviderTest.java
parente062d90200373473b21b42b8b5f0d8ae18155494 (diff)
Adding test cases to aai-core to increase coverage
Issue-ID: AAI-2828 Change-Id: I81e62cb1e1e984291bcd77c544f18d2d511b9d07 Signed-off-by: Yoo, Brian (by703c) <by703c@att.com>
Diffstat (limited to 'aai-core/src/test/java/org/onap/aai/restcore/CustomJacksonJaxBJsonProviderTest.java')
-rw-r--r--aai-core/src/test/java/org/onap/aai/restcore/CustomJacksonJaxBJsonProviderTest.java35
1 files changed, 35 insertions, 0 deletions
diff --git a/aai-core/src/test/java/org/onap/aai/restcore/CustomJacksonJaxBJsonProviderTest.java b/aai-core/src/test/java/org/onap/aai/restcore/CustomJacksonJaxBJsonProviderTest.java
new file mode 100644
index 00000000..8ea5722a
--- /dev/null
+++ b/aai-core/src/test/java/org/onap/aai/restcore/CustomJacksonJaxBJsonProviderTest.java
@@ -0,0 +1,35 @@
+/**
+ * ============LICENSE_START=======================================================
+ * org.onap.aai
+ * ================================================================================
+ * Copyright © 2017-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.aai.restcore;
+
+import org.junit.Assert;
+import org.junit.Test;
+import org.onap.aai.AAISetup;
+
+public class CustomJacksonJaxBJsonProviderTest extends AAISetup {
+ public static CustomJacksonJaxBJsonProvider customJacksonJaxBJsonProvider;
+
+ @Test
+ public void testGetMapper() {
+ customJacksonJaxBJsonProvider = new CustomJacksonJaxBJsonProvider();
+ Assert.assertNotNull(customJacksonJaxBJsonProvider.getMapper());
+ }
+}