diff options
author | ezhil <ezhrajam@in.ibm.com> | 2020-05-13 19:26:26 +0530 |
---|---|---|
committer | ezhil <ezhrajam@in.ibm.com> | 2020-05-13 19:26:33 +0530 |
commit | ec11c8631d87bcd15423851db69ea43ebf0f5e0e (patch) | |
tree | 1859b8612980d40adcbe5fea1ee65be4ec3963b0 | |
parent | 6226caf98a481b7a4e51ba066b96ed81b96dd071 (diff) |
Junit testcase for AAIEsrNfvo
Issue-ID: USECASEUI-439
Change-Id: I2db2cdfd0499aa1667bdde5eeff69135bfce7263
Signed-off-by: ezhil <ezhrajam@in.ibm.com>
-rw-r--r-- | server/src/test/java/org/onap/usecaseui/server/service/lcm/domain/aai/bean/AAIEsrNfvoTest.java | 29 |
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()); } } |