0c9d246154c5a3f062ec34549a046445c4506f9d
[policy/engine.git] / ONAP-PDP / src / test / java / org / onap / policy / xacml / pdp / ONAPPDPEngineFactoryTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-PDP
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.policy.xacml.pdp;
21
22 import static org.junit.Assert.assertTrue;
23 import static org.junit.Assert.fail;
24
25 import java.util.Properties;
26
27 import org.junit.Test;
28
29 public class ONAPPDPEngineFactoryTest {
30
31         @Test
32         public final void testNewEngine() {
33                 ONAPPDPEngineFactory pdpEngine = new ONAPPDPEngineFactory();
34                 try{
35                         assertTrue(pdpEngine.newEngine() != null);
36                 }catch (Exception e) {
37                         fail("operation failed, e="+e);
38                 }
39
40         }
41
42         @Test
43         public final void testNewEngineProperties() {
44                 ONAPPDPEngineFactory pdpEngine = new ONAPPDPEngineFactory();
45                 Properties properties = new Properties();
46                 try{
47                         assertTrue(pdpEngine.newEngine(properties) != null);
48                 }catch (Exception e) {
49                         fail("operation failed, e="+e);
50                 }
51         }
52 }