Reformat PolicyEngineAPI test cases
[policy/engine.git] / PolicyEngineAPI / src / test / java / org / onap / policy / test / NotificationTypeTest.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.*;
26 import org.onap.policy.api.NotificationType;
27 import static org.junit.Assert.*;
28
29 /**
30  * The class <code>NotificationTypeTest</code> contains tests for the class
31  * <code>{@link NotificationType}</code>.
32  *
33  * @generatedBy CodePro at 6/1/16 1:40 PM
34  * @version $Revision: 1.0 $
35  */
36 public class NotificationTypeTest {
37     /**
38      * Run the String toString() method test.
39      *
40      * @throws Exception
41      *
42      * @generatedBy CodePro at 6/1/16 1:40 PM
43      */
44     @Test
45     public void testToString_1() throws Exception {
46         NotificationType fixture = NotificationType.BOTH;
47
48         String result = fixture.toString();
49
50         // add additional test code here
51         assertEquals("both", result);
52     }
53
54     /**
55      * Perform pre-test initialization.
56      *
57      * @throws Exception if the initialization fails for some reason
58      *
59      * @generatedBy CodePro at 6/1/16 1:40 PM
60      */
61     @Before
62     public void setUp() throws Exception {
63         // add additional set up code here
64     }
65
66     /**
67      * Perform post-test clean-up.
68      *
69      * @throws Exception if the clean-up fails for some reason
70      *
71      * @generatedBy CodePro at 6/1/16 1:40 PM
72      */
73     @After
74     public void tearDown() throws Exception {
75         // Add additional tear down code here
76     }
77
78     /**
79      * Launch the test.
80      *
81      * @param args the command line arguments
82      *
83      * @generatedBy CodePro at 6/1/16 1:40 PM
84      */
85     public static void main(String[] args) {
86         new org.junit.runner.JUnitCore().run(NotificationTypeTest.class);
87     }
88 }