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