Initial OpenECOMP policy/engine commit
[policy/engine.git] / PolicyEngineAPI / src / test / java / org / openecomp / policy / test / PolicyConfigTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * PolicyEngineAPI
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
21 package org.openecomp.policy.test;
22
23 import java.util.Map;
24 import java.util.Properties;
25
26 import javax.json.JsonObject;
27
28 import org.junit.*;
29 import org.openecomp.policy.api.PolicyConfig;
30
31 import static org.junit.Assert.*;
32
33 import org.w3c.dom.Document;
34
35 /**
36  * The class <code>PolicyConfigTest</code> contains tests for the class <code>{@link PolicyConfig}</code>.
37  *
38  * @generatedBy CodePro at 6/1/16 1:41 PM
39  * @version $Revision: 1.0 $
40  */
41 public class PolicyConfigTest {
42         /**
43          * Perform pre-test initialization.
44          *
45          * @throws Exception
46          *         if the initialization fails for some reason
47          *
48          * @generatedBy CodePro at 6/1/16 1:41 PM
49          */
50         @Before
51         public void setUp()
52                 throws Exception {
53                 // add additional set up code here
54         }
55
56         /**
57          * Perform post-test clean-up.
58          *
59          * @throws Exception
60          *         if the clean-up fails for some reason
61          *
62          * @generatedBy CodePro at 6/1/16 1:41 PM
63          */
64         @After
65         public void tearDown()
66                 throws Exception {
67                 // Add additional tear down code here
68         }
69
70         /**
71          * Launch the test.
72          *
73          * @param args the command line arguments
74          *
75          * @generatedBy CodePro at 6/1/16 1:41 PM
76          */
77         public static void main(String[] args) {
78                 new org.junit.runner.JUnitCore().run(PolicyConfigTest.class);
79         }
80 }