From 7343d9b5736148fc6d688d094b36903a5160c0e3 Mon Sep 17 00:00:00 2001 From: jitendra sharma Date: Wed, 19 Feb 2020 14:55:49 +0000 Subject: Change dependency version for commons-codec and spring-core Issue-ID: CLI-246 Signed-off-by: jitendra sharma Change-Id: Ia0a07a417f64733e859ea7f1be6488b95d42cb52 --- .../src/test/java/org/onap/cli/fw/utils/OnapCommandUtilsTest.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'framework/src/test/java') diff --git a/framework/src/test/java/org/onap/cli/fw/utils/OnapCommandUtilsTest.java b/framework/src/test/java/org/onap/cli/fw/utils/OnapCommandUtilsTest.java index df94d594..e40dfdf4 100644 --- a/framework/src/test/java/org/onap/cli/fw/utils/OnapCommandUtilsTest.java +++ b/framework/src/test/java/org/onap/cli/fw/utils/OnapCommandUtilsTest.java @@ -59,6 +59,7 @@ import static java.util.Collections.singletonList; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; import static org.junit.Assert.fail; +import static org.junit.Assert.assertNotNull; import static org.onap.cli.fw.conf.OnapCommandConstants.IS_INCLUDE; import static org.onap.cli.fw.input.OnapCommandParameterType.ARRAY; import static org.onap.cli.fw.input.OnapCommandParameterType.BOOL; @@ -513,4 +514,9 @@ public class OnapCommandUtilsTest { } }; } + + @Test + public void testMd5(){ + assertNotNull(OnapCommandUtils.md5("a")); + } } -- cgit 1.2.3-korg