From 0842892840c6efb7849e3c7c0ec4fa2529700b12 Mon Sep 17 00:00:00 2001 From: luxin Date: Fri, 9 Feb 2018 16:56:27 +0800 Subject: Add nsEntity test case Change-Id: Ieeda965a313ea4edf7a0d42b3ed2e0af0e317a8e Issue-ID: VFC-747 Signed-off-by: luxin --- .../resmanagement/service/entity/NsEntityTest.java | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 ResmanagementService/service/src/test/java/org/onap/vfc/nfvo/resmanagement/service/entity/NsEntityTest.java diff --git a/ResmanagementService/service/src/test/java/org/onap/vfc/nfvo/resmanagement/service/entity/NsEntityTest.java b/ResmanagementService/service/src/test/java/org/onap/vfc/nfvo/resmanagement/service/entity/NsEntityTest.java new file mode 100644 index 0000000..b1d03f5 --- /dev/null +++ b/ResmanagementService/service/src/test/java/org/onap/vfc/nfvo/resmanagement/service/entity/NsEntityTest.java @@ -0,0 +1,49 @@ +/* + * Copyright 2018 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.onap.vfc.nfvo.resmanagement.service.entity; + +import static org.junit.Assert.assertTrue; + +import org.junit.Before; +import org.junit.Test; + +import net.sf.json.JSONObject; + +public class NsEntityTest { + + private NsEntity nsEntity; + + @Before + public void setUp() { + nsEntity = new NsEntity(); + } + + @Test + public void testPortEntiry() { + nsEntity.setId("id"); + nsEntity.setName("name"); + nsEntity.setNsdId("nsdId"); + nsEntity.setDescription("description"); + nsEntity.setStatus("status"); + nsEntity.setCreateTime("createTime"); + nsEntity.setLastUpdate("lastUpdate"); + nsEntity.setResourceVersion("resourceVersion"); + assertTrue(nsEntity.toString() != null); + assertTrue(nsEntity.toEntity(new JSONObject()) != null); + + } +} -- cgit 1.2.3-korg