コード例 #1
0
        public void op_Set_string_string()
        {
            const string expected = "test";

            var obj = new KeyStringDictionary
            {
                new KeyStringPair("Example", string.Empty)
            };

            obj.Set("Example", expected);

            var actual = obj["Example"];

            Assert.Equal(expected, actual);
        }