public void NullAttributesCollection()
        {
            XmlAttributeTypeDescriptor   typeDescriptor = new XmlAttributeTypeDescriptor(null);
            PropertyDescriptorCollection properties     = typeDescriptor.GetProperties();

            Assert.AreEqual(0, properties.Count);
        }
        public void Init()
        {
            XmlDocument doc = new XmlDocument();

            doc.LoadXml("<root first='a'/>");
            typeDescriptor = new XmlAttributeTypeDescriptor(doc.DocumentElement.Attributes);
        }