From 79d67955b160929ffacc6828014d3c5ce3110fb8 Mon Sep 17 00:00:00 2001 From: "tian.ming@huawei.com" Date: Thu, 25 Aug 2016 21:13:33 +0800 Subject: adjust the code Change-Id: Id896bed917ba6730c6b5d96665ef9978cfb413de Signed-off-by: tian.ming@huawei.com --- .../baseservice/roa/util/TestServiceUtil.java | 92 ++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 rest-client/src/test/java/org/openo/baseservice/roa/util/TestServiceUtil.java (limited to 'rest-client/src/test/java/org/openo/baseservice/roa/util/TestServiceUtil.java') diff --git a/rest-client/src/test/java/org/openo/baseservice/roa/util/TestServiceUtil.java b/rest-client/src/test/java/org/openo/baseservice/roa/util/TestServiceUtil.java new file mode 100644 index 0000000..f4f93e4 --- /dev/null +++ b/rest-client/src/test/java/org/openo/baseservice/roa/util/TestServiceUtil.java @@ -0,0 +1,92 @@ +/* + * Copyright (c) 2016, Huawei Technologies Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.openo.baseservice.roa.util; + +import org.junit.After; +import org.junit.AfterClass; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Test; + +/** + *
+ *

+ *

+ * + * @author + * @version SDNO 0.5 13-Jun-2016 + */ +public class TestServiceUtil { + + /** + *
+ * + * @throws java.lang.Exception + * @since SDNO 0.5 + */ + @BeforeClass + public static void setUpBeforeClass() throws Exception { + } + + /** + *
+ * + * @throws java.lang.Exception + * @since SDNO 0.5 + */ + @AfterClass + public static void tearDownAfterClass() throws Exception { + } + + /** + *
+ * + * @throws java.lang.Exception + * @since SDNO 0.5 + */ + @Before + public void setUp() throws Exception { + } + + /** + *
+ * + * @throws java.lang.Exception + * @since SDNO 0.5 + */ + @After + public void tearDown() throws Exception { + } + + /** + *
+ * + * @since SDNO 0.5 + */ + @Test + public void testGetServiceHost() { + } + + /** + *
+ * + * @since SDNO 0.5 + */ + @Test + public void testGetServicePort() { + } +} -- cgit 1.2.3-korg