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