diff options
author | subhash kumar singh <subhash.kumar.singh@huawei.com> | 2018-02-23 06:23:15 +0000 |
---|---|---|
committer | subhash kumar singh <subhash.kumar.singh@huawei.com> | 2018-02-28 09:20:29 +0000 |
commit | 44a21ae0bb0e6d26e4bb986764cd6edd1e8e05b5 (patch) | |
tree | 35547d8fc23ca8b19596f449a274ef070bf101a7 /profiles/http/src/test/java/org | |
parent | 225400a393da49322bdf500a61ae423ec00efead (diff) |
Add support for context parameter
Add support for context parameter, which can be used to communicate
data from framework to profile.
Change-Id: Idf77f3c225e7e65be2660f687782b37dc3da76c3
Issue-ID: CLI-74
Signed-off-by: subhash kumar singh <subhash.kumar.singh@huawei.com>
Diffstat (limited to 'profiles/http/src/test/java/org')
-rw-r--r-- | profiles/http/src/test/java/org/onap/cli/fw/http/utils/OnapCommandUtilsTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/profiles/http/src/test/java/org/onap/cli/fw/http/utils/OnapCommandUtilsTest.java b/profiles/http/src/test/java/org/onap/cli/fw/http/utils/OnapCommandUtilsTest.java index 12920515..67956a88 100644 --- a/profiles/http/src/test/java/org/onap/cli/fw/http/utils/OnapCommandUtilsTest.java +++ b/profiles/http/src/test/java/org/onap/cli/fw/http/utils/OnapCommandUtilsTest.java @@ -93,7 +93,7 @@ public class OnapCommandUtilsTest { assertTrue("sample-test".equals(cmd.getName())); Map<String, OnapCommandParameter> map = OnapCommandUtils.getInputMap(cmd.getParameters()); - assertTrue(map.size() == 7); + assertTrue(map.size() == 8); } @Test(expected = OnapCommandHttpHeaderNotFound.class) |