System.Xml.Tests.TCValidateAttribute.PassNullXmlSchemaInfo__Valid C# (CSharp) Method

PassNullXmlSchemaInfo__Valid() private method

private PassNullXmlSchemaInfo__Valid ( ) : void
return void
        public void PassNullXmlSchemaInfo__Valid()
        {
            XmlSchemaValidator val = CreateValidator(XSDFILE_VALIDATE_ATTRIBUTE);
            XmlSchemaInfo info = new XmlSchemaInfo();

            val.Initialize();
            val.ValidateElement("OneAttributeElement", "", null);
            val.ValidateAttribute("attr", "", StringGetter("foo"), null);

            return;
        }