public void Ctor_SetsProperties()
        {
            var attrib = new ServiceMetadataTypeAttribute(typeof(string));

            Assert.Equal(typeof(string), attrib.MetadataClassType);
        }
Beispiel #2
0
        public void Ctor_SetsProperties()
        {
            var attrib = new ServiceMetadataTypeAttribute(typeof(string));

            Assert.AreEqual(typeof(string), attrib.MetadataClassType, "The metadata class type was not set.");
        }