--- /dev/null
+/*\r
+ * Copyright 2018 Huawei Technologies Co., Ltd.\r
+ *\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ *\r
+ * http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ */\r
+\r
+package org.onap.vfc.nfvo.resmanagement.service.entity;\r
+\r
+import static org.junit.Assert.assertTrue;\r
+\r
+import org.junit.Before;\r
+import org.junit.Test;\r
+\r
+import net.sf.json.JSONObject;\r
+\r
+public class NsEntityTest {\r
+\r
+ private NsEntity nsEntity;\r
+\r
+ @Before\r
+ public void setUp() {\r
+ nsEntity = new NsEntity();\r
+ }\r
+\r
+ @Test\r
+ public void testPortEntiry() {\r
+ nsEntity.setId("id");\r
+ nsEntity.setName("name");\r
+ nsEntity.setNsdId("nsdId");\r
+ nsEntity.setDescription("description");\r
+ nsEntity.setStatus("status");\r
+ nsEntity.setCreateTime("createTime");\r
+ nsEntity.setLastUpdate("lastUpdate");\r
+ nsEntity.setResourceVersion("resourceVersion");\r
+ assertTrue(nsEntity.toString() != null);\r
+ assertTrue(nsEntity.toEntity(new JSONObject()) != null);\r
+\r
+ }\r
+}\r