d81ba3f982cfbea8a6a423042256c8bc1262eda6
[policy/engine.git] / PolicyEngineAPI / src / test / java / org / onap / 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.onap.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.onap.policy.api.NotificationScheme;
33 import org.onap.policy.api.PDPNotification;
34 import org.onap.policy.std.ManualClientEndUEB;
35 import org.onap.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         /**
67          * Run the PDPNotification result(NotificationScheme) method test.
68          *
69          * @throws Exception
70          *
71          * @generatedBy CodePro at 6/1/16 1:40 PM
72          */
73         @Test
74         public void testResult_1()
75                 throws Exception {
76                 NotificationScheme scheme = NotificationScheme.AUTO_ALL_NOTIFICATIONS;
77
78                 PDPNotification result = ManualClientEndUEB.result(scheme);
79
80                 assertNull(result);
81         }
82
83         /**
84          * Perform post-test clean-up.
85          *
86          * @throws Exception
87          *         if the clean-up fails for some reason
88          *
89          * @generatedBy CodePro at 6/1/16 1:40 PM
90          */
91         @After
92         public void tearDown()
93                 throws Exception {
94                 // Add additional tear down code here
95         }
96
97         /**
98          * Launch the test.
99          *
100          * @param args the command line arguments
101          *
102          * @generatedBy CodePro at 6/1/16 1:40 PM
103          */
104         public static void main(String[] args) {
105                 new org.junit.runner.JUnitCore().run(ManualClientEndUEBTest.class);
106         }
107 }