* ================================================================================
* Copyright 2018 TechMahindra
*=================================================================================
+* Modifications Copyright 2018 IBM.
+*=================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
Assert.assertTrue(requestContext.getAdditionalContext().containsKey("A"));
Assert.assertTrue(requestContext.getAdditionalContext().containsValue("a"));
}
+
+ @Test
+ public void testAddKeyValueToAdditionalContext() {
+ String key="key1";
+ String value="value1";
+ requestContext.addKeyValueToAdditionalContext(key, value);
+ Map<String, String> additionalContext= requestContext.getAdditionalContext();
+ Assert.assertEquals("value1", additionalContext.get("key1"));
+ }
@Test
public void testGetPayload() {