From ec11c8631d87bcd15423851db69ea43ebf0f5e0e Mon Sep 17 00:00:00 2001 From: ezhil Date: Wed, 13 May 2020 19:26:26 +0530 Subject: Junit testcase for AAIEsrNfvo Issue-ID: USECASEUI-439 Change-Id: I2db2cdfd0499aa1667bdde5eeff69135bfce7263 Signed-off-by: ezhil --- .../lcm/domain/aai/bean/AAIEsrNfvoTest.java | 29 ++++++++++------------ 1 file 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()); } } -- cgit 1.2.3-korg