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