Example #1
0
        public void TestGetValue()
        {
            var dictionary = new XmlDictionary
            {
                { "key1", "value1" },
                { "key2", "value2" }
            };

            dictionary.GetValue("key1").Should().Be("value1");
        }