Remove useless imports and vars
[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  * 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.std.test;
24
25 import static org.junit.Assert.assertNull;
26 import java.util.LinkedList;
27 import java.util.List;
28 import org.junit.After;
29 import org.junit.Before;
30 import org.junit.Test;
31 import org.onap.policy.api.NotificationScheme;
32 import org.onap.policy.api.PDPNotification;
33 import org.onap.policy.std.ManualClientEndUEB;
34 import org.onap.policy.std.StdPDPNotification;
35
36 /**
37  * The class <code>ManualClientEndUEBTest</code> contains tests for the class
38  * <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     /**
51      * Perform pre-test initialization.
52      *
53      * @throws Exception 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() throws Exception {
59         String url = "http://test.com";
60         List<String> uebURLList = new LinkedList<String>();
61         uebURLList.add(url);
62
63     }
64
65     /**
66      * Run the PDPNotification result(NotificationScheme) method test.
67      *
68      * @throws Exception
69      *
70      * @generatedBy CodePro at 6/1/16 1:40 PM
71      */
72     @Test
73     public void testResult_1() throws Exception {
74         NotificationScheme scheme = NotificationScheme.AUTO_ALL_NOTIFICATIONS;
75
76         PDPNotification result = ManualClientEndUEB.result(scheme);
77
78         assertNull(result);
79     }
80
81     /**
82      * Perform post-test clean-up.
83      *
84      * @throws Exception if the clean-up fails for some reason
85      *
86      * @generatedBy CodePro at 6/1/16 1:40 PM
87      */
88     @After
89     public void tearDown() throws Exception {
90         // Add additional tear down code here
91     }
92
93     /**
94      * Launch the test.
95      *
96      * @param args the command line arguments
97      *
98      * @generatedBy CodePro at 6/1/16 1:40 PM
99      */
100     public static void main(String[] args) {
101         new org.junit.runner.JUnitCore().run(ManualClientEndUEBTest.class);
102     }
103 }