System.Xml.Tests.TCValidateAttribute_String.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", "", "foo", null);

            return;
        }