db6d783b91aaaa245bd84e2e87f6e7aee380f6d5
[ccsdk/features.git] /
1 package org.onap.ccsdk.features.sdnr.wt.helpserver.test;
2 /*******************************************************************************
3  * ============LICENSE_START========================================================================
4  * ONAP : ccsdk feature sdnr wt
5  * =================================================================================================
6  * Copyright (C) 2019 highstreet technologies GmbH Intellectual Property. All rights reserved.
7  * =================================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
9  * in compliance with the License. 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 distributed under the License
14  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
15  * or implied. See the License for the specific language governing permissions and limitations under
16  * the License.
17  * ============LICENSE_END==========================================================================
18  ******************************************************************************/
19 import static org.junit.Assert.assertNotNull;
20 import org.junit.Test;
21 import org.onap.ccsdk.features.sdnr.wt.helpserver.HelpServlet;
22
23 public class TestHelpServer {
24
25     @Test
26     public void test() throws Exception {
27
28         HelpServlet helpServelet = new HelpServlet();
29
30         assertNotNull("Helpservelet created", helpServelet);
31
32         helpServelet.close();
33     }
34
35 }