aboutsummaryrefslogtreecommitdiffstats
path: root/ONAP-PAP-REST/src/test/java/org/onap/policy/pap/xacml/rest/util/JPAUtilsTest.java
diff options
context:
space:
mode:
authorbobbymander <bobby.mander@att.com>2018-02-28 08:58:56 -0500
committerbobbymander <bobby.mander@att.com>2018-02-28 08:59:10 -0500
commitcf9b95bdfd85c34ff00b008e388df4d4e223da71 (patch)
tree1b2d60fdfd2e7322ed48b00a5d51c20150a8fdf2 /ONAP-PAP-REST/src/test/java/org/onap/policy/pap/xacml/rest/util/JPAUtilsTest.java
parentf39febaa77ab395b8e755c19ef85cc984b8da072 (diff)
JUnit additions for ONAP-PAP-REST
Issue-ID: POLICY-600 Change-Id: I6e458335b04b88146d88fea2f6fd908779d842fc Signed-off-by: bobbymander <bobby.mander@att.com>
Diffstat (limited to 'ONAP-PAP-REST/src/test/java/org/onap/policy/pap/xacml/rest/util/JPAUtilsTest.java')
-rw-r--r--ONAP-PAP-REST/src/test/java/org/onap/policy/pap/xacml/rest/util/JPAUtilsTest.java44
1 files changed, 44 insertions, 0 deletions
diff --git a/ONAP-PAP-REST/src/test/java/org/onap/policy/pap/xacml/rest/util/JPAUtilsTest.java b/ONAP-PAP-REST/src/test/java/org/onap/policy/pap/xacml/rest/util/JPAUtilsTest.java
new file mode 100644
index 000000000..2c852fd5c
--- /dev/null
+++ b/ONAP-PAP-REST/src/test/java/org/onap/policy/pap/xacml/rest/util/JPAUtilsTest.java
@@ -0,0 +1,44 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP-PAP-REST
+ * ================================================================================
+ * 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.policy.pap.xacml.rest.util;
+
+import static org.junit.Assert.assertEquals;
+import javax.persistence.EntityManagerFactory;
+import org.junit.Rule;
+import org.junit.Test;
+import org.junit.rules.ExpectedException;
+import org.mockito.Mockito;
+
+public class JPAUtilsTest {
+ @Rule
+ public ExpectedException thrown = ExpectedException.none();
+
+ @Test
+ public void testJPAUtils() throws IllegalAccessException {
+ EntityManagerFactory emf = Mockito.mock(EntityManagerFactory.class);
+ JPAUtils utils = JPAUtils.getJPAUtilsInstance(emf);
+
+ assertEquals(utils.dbLockdownIgnoreErrors(), false);
+
+ thrown.expect(NullPointerException.class);
+ utils.dbLockdown();
+ }
+}