Junit testcase for AAIEsrNfvo 24/107624/1
authorezhil <ezhrajam@in.ibm.com>
Wed, 13 May 2020 13:56:26 +0000 (19:26 +0530)
committerezhil <ezhrajam@in.ibm.com>
Wed, 13 May 2020 13:56:33 +0000 (19:26 +0530)
Issue-ID: USECASEUI-439
Change-Id: I2db2cdfd0499aa1667bdde5eeff69135bfce7263
Signed-off-by: ezhil <ezhrajam@in.ibm.com>
server/src/test/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/AAIEsrNfvoTest.java

index a6581da..04572d9 100644 (file)
@@ -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
 
 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());
 
     }
 }