Exemplo n.º 1
0
        public static void Ctor_KeyNameValueName_Success()
        {
            XmlConvertKeyValueElementAttribute attribute = new XmlConvertKeyValueElementAttribute("hello", "goodbye");

            Assert.Equal("hello", attribute.KeyName);
            Assert.Equal("goodbye", attribute.ValueName);
        }
Exemplo n.º 2
0
 public static void Ctor_KeyNameValueName_Success()
 {
     XmlConvertKeyValueElementAttribute attribute = new XmlConvertKeyValueElementAttribute("hello", "goodbye");
     Assert.Equal("hello", attribute.KeyName);
     Assert.Equal("goodbye", attribute.ValueName);
 }