diff options
author | Alexey Sandler <alexey.sandler@intl.att.com> | 2019-12-21 20:22:08 +0200 |
---|---|---|
committer | Alexey Sandler <alexey.sandler@intl.att.com> | 2019-12-21 20:28:08 +0200 |
commit | 54af5cdca044c7b486f02f4163d16c39e990f701 (patch) | |
tree | e98362f08c3f7d2db9412ef0ce83b137ef79a2e3 /vid-app-common/src/test/java/org | |
parent | 0f5a95ab335b475d626eddda040ad3ac3105f24e (diff) |
Add test to verify the count amount of networks during summarizing.
Issue-ID: VID-724
Signed-off-by: Alexey Sandler <alexey.sandler@intl.att.com>
Change-Id: Ic65c52deb66a8a1281a190443907b04b2385787a
Signed-off-by: Alexey Sandler <alexey.sandler@intl.att.com>
Diffstat (limited to 'vid-app-common/src/test/java/org')
-rw-r--r-- | vid-app-common/src/test/java/org/onap/vid/services/AsyncInstantiationBusinessLogicTest.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vid-app-common/src/test/java/org/onap/vid/services/AsyncInstantiationBusinessLogicTest.java b/vid-app-common/src/test/java/org/onap/vid/services/AsyncInstantiationBusinessLogicTest.java index 29d614cb2..b17b968ca 100644 --- a/vid-app-common/src/test/java/org/onap/vid/services/AsyncInstantiationBusinessLogicTest.java +++ b/vid-app-common/src/test/java/org/onap/vid/services/AsyncInstantiationBusinessLogicTest.java @@ -498,7 +498,8 @@ public class AsyncInstantiationBusinessLogicTest extends AsyncInstantiationBaseT Map<String, Long> childrenMap = asyncInstantiationBL.getSummarizedChildrenMap(serviceInstantiation); Map<String, Long> expectedMap = ImmutableMap.of( "vnf", 4L, - "vfModule", 6L + "vfModule", 6L, + "network", 2L ); assertEquals(childrenMap,expectedMap); |