diff options
author | luxin <luxin7@huawei.com> | 2018-02-09 16:56:27 +0800 |
---|---|---|
committer | luxin <luxin7@huawei.com> | 2018-02-09 16:56:27 +0800 |
commit | 0842892840c6efb7849e3c7c0ec4fa2529700b12 (patch) | |
tree | 7845f6102c1931602ec9292085170256700f93b7 /ResmanagementService | |
parent | 19e5d9984c58fa10c554148684bd376d4ee42fff (diff) |
Add nsEntity test case
Change-Id: Ieeda965a313ea4edf7a0d42b3ed2e0af0e317a8e
Issue-ID: VFC-747
Signed-off-by: luxin <luxin7@huawei.com>
Diffstat (limited to 'ResmanagementService')
-rw-r--r-- | ResmanagementService/service/src/test/java/org/onap/vfc/nfvo/resmanagement/service/entity/NsEntityTest.java | 49 |
1 files changed, 49 insertions, 0 deletions
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);
+
+ }
+}
|