Apache.NMS.Test.URISupportTest.AssertMapKey C# (CSharp) Method

AssertMapKey() protected method

protected AssertMapKey ( StringDictionary map, String key, Object expected ) : void
map System.Collections.Specialized.StringDictionary
key String
expected Object
return void
        protected void AssertMapKey(StringDictionary map, String key, Object expected)
        {
            Assert.AreEqual(expected, map[key], "Map key: " + key);
        }