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
11 * http://www.apache.org/licenses/LICENSE-2.0
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
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;
23 public class TestHelpServer {
26 public void test() throws Exception {
28 HelpServlet helpServelet = new HelpServlet();
30 assertNotNull("Helpservelet created", helpServelet);