Reformat PolicyEngineAPI test cases
[policy/engine.git] / PolicyEngineAPI / src / test / java / org / onap / policy / test / PolicyChangeResponseTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * PolicyEngineAPI
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (C) 2019 Samsung
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.test;
24
25 import org.junit.After;
26 import org.junit.Before;
27 import org.onap.policy.api.PolicyChangeResponse;
28
29 /**
30  * The class <code>PolicyChangeResponseTest</code> contains tests for the class
31  * <code>{@link PolicyChangeResponse}</code>.
32  *
33  * @generatedBy CodePro at 6/1/16 1:41 PM
34  * @version $Revision: 1.0 $
35  */
36 public class PolicyChangeResponseTest {
37     /**
38      * Perform pre-test initialization.
39      *
40      * @throws Exception if the initialization fails for some reason
41      *
42      * @generatedBy CodePro at 6/1/16 1:41 PM
43      */
44     @Before
45     public void setUp() throws Exception {
46         // add additional set up code here
47     }
48
49     /**
50      * Perform post-test clean-up.
51      *
52      * @throws Exception 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() throws Exception {
58         // Add additional tear down code here
59     }
60
61     /**
62      * Launch the test.
63      *
64      * @param args the command line arguments
65      *
66      * @generatedBy CodePro at 6/1/16 1:41 PM
67      */
68     public static void main(String[] args) {
69         new org.junit.runner.JUnitCore().run(PolicyChangeResponseTest.class);
70     }
71 }