Add nsEntity test case 25/31025/1
authorluxin <luxin7@huawei.com>
Fri, 9 Feb 2018 08:56:27 +0000 (16:56 +0800)
committerluxin <luxin7@huawei.com>
Fri, 9 Feb 2018 08:56:27 +0000 (16:56 +0800)
Change-Id: Ieeda965a313ea4edf7a0d42b3ed2e0af0e317a8e
Issue-ID: VFC-747
Signed-off-by: luxin <luxin7@huawei.com>
ResmanagementService/service/src/test/java/org/onap/vfc/nfvo/resmanagement/service/entity/NsEntityTest.java [new file with mode: 0644]

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 (file)
index 0000000..b1d03f5
--- /dev/null
@@ -0,0 +1,49 @@
+/*\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