System.Xml.Tests.TCGetUnspecifiedDefaultAttributes.CallOnElementWithFixedAttribute C# (CSharp) Method

CallOnElementWithFixedAttribute() private method

private CallOnElementWithFixedAttribute ( ) : void
return void
        public void CallOnElementWithFixedAttribute()
        {
            XmlSchemaValidator val = CreateValidator(XSDFILE_VALIDATE_ATTRIBUTE);
            ArrayList atts = new ArrayList();

            val.Initialize();
            val.ValidateElement("FixedAttributeElement", "", null);

            val.GetUnspecifiedDefaultAttributes(atts);
            CheckDefaultAttributes(atts, new string[] { "FixedAttribute" });

            return;
        }