summaryrefslogtreecommitdiffstats
path: root/esr-mgr/src/test/java/org/onap/aai/esr/entity/rest/VimRegisterInfoTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'esr-mgr/src/test/java/org/onap/aai/esr/entity/rest/VimRegisterInfoTest.java')
-rw-r--r--esr-mgr/src/test/java/org/onap/aai/esr/entity/rest/VimRegisterInfoTest.java10
1 files changed, 9 insertions, 1 deletions
diff --git a/esr-mgr/src/test/java/org/onap/aai/esr/entity/rest/VimRegisterInfoTest.java b/esr-mgr/src/test/java/org/onap/aai/esr/entity/rest/VimRegisterInfoTest.java
index 74761f9..121d702 100644
--- a/esr-mgr/src/test/java/org/onap/aai/esr/entity/rest/VimRegisterInfoTest.java
+++ b/esr-mgr/src/test/java/org/onap/aai/esr/entity/rest/VimRegisterInfoTest.java
@@ -1,5 +1,5 @@
/**
- * Copyright 2017 ZTE Corporation.
+ * Copyright 2017-2018 ZTE Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -70,6 +70,14 @@ public class VimRegisterInfoTest {
}
@Test
+ public void getterAndSetter4physicalLocationId() {
+ final String physicalLocationId = "test";
+ VimRegisterInfo vimRegisterInfo = new VimRegisterInfo();
+ vimRegisterInfo.setPhysicalLocationId(physicalLocationId);
+ assertEquals(vimRegisterInfo.getPhysicalLocationId(), physicalLocationId);
+ }
+
+ @Test
public void getterAndSetter4complexName() {
final String complexName = "test";
VimRegisterInfo vimRegisterInfo = new VimRegisterInfo();