aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxu ran <xuranyjy@chinamobile.com>2020-05-14 03:09:30 +0000
committerGerrit Code Review <gerrit@onap.org>2020-05-14 03:09:30 +0000
commit786e1cc12b40710e47f5f9dcddd922e899d6e331 (patch)
tree6ece6203665964182f08cdf4759460ef7ce91ea0
parent90652c6c1962d7925cc4c14818917afbe359fe96 (diff)
parentec11c8631d87bcd15423851db69ea43ebf0f5e0e (diff)
Merge "Junit testcase for AAIEsrNfvo"
-rw-r--r--server/src/test/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/AAIEsrNfvoTest.java29
1 files changed, 13 insertions, 16 deletions
diff --git a/server/src/test/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/AAIEsrNfvoTest.java b/server/src/test/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/AAIEsrNfvoTest.java
index a6581da6..04572d9d 100644
--- a/server/src/test/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/AAIEsrNfvoTest.java
+++ b/server/src/test/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/AAIEsrNfvoTest.java
@@ -1,6 +1,9 @@
/**
* Copyright 2020 Huawei Corporation.
*
+ * ================================================================================
+ * Modifications Copyright (C) 2020 IBM.
+ * ================================================================================
* 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
@@ -16,25 +19,13 @@
package org.onap.usecaseui.server.service.lcm.domain.aai.bean;
-/**
- * Copyright (C) 2020 Huawei, Inc. and others. All rights reserved.
- *
- * 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.
- */
+
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
+import static org.junit.Assert.assertEquals;
+
public class AAIEsrNfvoTest {
@Before
@@ -53,7 +44,13 @@ public class AAIEsrNfvoTest {
aaiEsrNfvo.getName();
aaiEsrNfvo.getNfvoId();
aaiEsrNfvo.getResourceVersion();
- aaiEsrNfvo.setName("123");
+
+ assertEquals("123",aaiEsrNfvo.getApiRoot());
+ assertEquals("123",aaiEsrNfvo.getName());
+ assertEquals("123",aaiEsrNfvo.getNfvoId());
+ assertEquals("123",aaiEsrNfvo.getResourceVersion());
+ aaiEsrNfvo.setName("test");
+ assertEquals("test",aaiEsrNfvo.getName());
}
}