Policy TestSuite Enabled
[policy/engine.git] / PolicyEngineAPI / src / test / java / org / openecomp / policy / std / test / ManualClientEndUEBTest.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.std.test;
22
23 import static org.junit.Assert.assertNotNull;
24 import static org.junit.Assert.assertNull;
25
26 import java.util.LinkedList;
27 import java.util.List;
28
29 import org.junit.After;
30 import org.junit.Before;
31 import org.junit.Test;
32 import org.openecomp.policy.api.NotificationScheme;
33 import org.openecomp.policy.api.PDPNotification;
34 import org.openecomp.policy.std.ManualClientEndUEB;
35 import org.openecomp.policy.std.StdPDPNotification;
36
37 /**
38  * The class <code>ManualClientEndUEBTest</code> contains tests for the class <code>{@link ManualClientEndUEB}</code>.
39  *
40  * @generatedBy CodePro at 6/1/16 1:40 PM
41  * @version $Revision: 1.0 $
42  */
43 public class ManualClientEndUEBTest {
44         
45         String resultJson = "{'test':'testing'}";
46         String json = "{\"test\":\"testing\"}";
47         StdPDPNotification notification = new StdPDPNotification();
48         ManualClientEndUEB mockManualClient = null;
49         /**
50          * Perform pre-test initialization.
51          *
52          * @throws Exception
53          *         if the initialization fails for some reason
54          *
55          * @generatedBy CodePro at 6/1/16 1:40 PM
56          */
57         @Before
58         public void setUp()
59                 throws Exception {
60                 String url = "http://test.com";
61                 List<String> uebURLList = new LinkedList<String>();
62                 uebURLList.add(url);
63                                 
64         }
65         /**
66          * Run the ManualClientEndUEB() constructor test.
67          *
68          * @generatedBy CodePro at 6/1/16 1:40 PM
69          */
70         @Test
71         public void testManualClientEndUEB_1()
72                 throws Exception {
73                 ManualClientEndUEB result = new ManualClientEndUEB();
74                 assertNotNull(result);
75                 // add additional test code here
76         }
77
78         /**
79          * Run the PDPNotification result(NotificationScheme) method test.
80          *
81          * @throws Exception
82          *
83          * @generatedBy CodePro at 6/1/16 1:40 PM
84          */
85         @Test
86         public void testResult_1()
87                 throws Exception {
88                 NotificationScheme scheme = NotificationScheme.AUTO_ALL_NOTIFICATIONS;
89
90                 PDPNotification result = ManualClientEndUEB.result(scheme);
91
92                 assertNull(result);
93         }
94
95         /**
96          * Perform post-test clean-up.
97          *
98          * @throws Exception
99          *         if the clean-up fails for some reason
100          *
101          * @generatedBy CodePro at 6/1/16 1:40 PM
102          */
103         @After
104         public void tearDown()
105                 throws Exception {
106                 // Add additional tear down code here
107         }
108
109         /**
110          * Launch the test.
111          *
112          * @param args the command line arguments
113          *
114          * @generatedBy CodePro at 6/1/16 1:40 PM
115          */
116         public static void main(String[] args) {
117                 new org.junit.runner.JUnitCore().run(ManualClientEndUEBTest.class);
118         }
119 }