diff options
author | shrek2000 <orenkle@amdocs.com> | 2018-01-09 16:00:28 +0200 |
---|---|---|
committer | Vitaly Emporopulo <Vitaliy.Emporopulo@amdocs.com> | 2018-01-10 13:50:33 +0000 |
commit | 38cf5fed407ed0aa5e7adb72c90b82bccccfe3e0 (patch) | |
tree | b1da18c7547b084d07dd632189fb3a311dba4876 /openecomp-be/tools/zusammen-tools/src/test/java | |
parent | df348f9866e922122c7eb9c48210e18da3679913 (diff) |
Fail to Export VLM
Timestamps had null value, invalid json caused exceptions
Issue-ID: SDC-892
Change-Id: Iab117dd76cd51c3cd5fa62a59f55b18e265c58bf
Signed-off-by: shrek2000 <orenkle@amdocs.com>
Diffstat (limited to 'openecomp-be/tools/zusammen-tools/src/test/java')
-rw-r--r-- | openecomp-be/tools/zusammen-tools/src/test/java/org/openecomp/core/tools/Commands/exportinfo/serialize/VLMExtractTest.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openecomp-be/tools/zusammen-tools/src/test/java/org/openecomp/core/tools/Commands/exportinfo/serialize/VLMExtractTest.java b/openecomp-be/tools/zusammen-tools/src/test/java/org/openecomp/core/tools/Commands/exportinfo/serialize/VLMExtractTest.java index a5a1ff2cbc..ed1ad2b2f4 100644 --- a/openecomp-be/tools/zusammen-tools/src/test/java/org/openecomp/core/tools/Commands/exportinfo/serialize/VLMExtractTest.java +++ b/openecomp-be/tools/zusammen-tools/src/test/java/org/openecomp/core/tools/Commands/exportinfo/serialize/VLMExtractTest.java @@ -36,12 +36,12 @@ public class VLMExtractTest { @Test(expectedExceptions = IllegalStateException.class) public void failToExtractVLMBecauseJsonIsCorrupted(){ String elemenet_info_string = "gfhhhghgh"; - new CustomExportSerializer().extractVlm(elemenet_info_string); + assertNull(new CustomExportSerializer().extractVlm(elemenet_info_string)); } private static final class CustomExportSerializer extends ExportSerializer{ - public String extractVlm(String injson) { - return super.extractVlm(injson); + public String extractVlm(String inJson) { + return super.extractVlm(inJson); } } } |