System.Xml.Tests.TC_SchemaSet_Misc.v105 C# (CSharp) Method

v105() private method

private v105 ( ) : void
return void
        public void v105()
        {
            Initialize();
            XmlSchemaSet schemaSet = new XmlSchemaSet();
            schemaSet.XmlResolver = new XmlUrlResolver();
            schemaSet.ValidationEventHandler += new ValidationEventHandler(ValidationCallback);
            schemaSet.Add(null, Path.Combine(TestData._Root, "Misc105.xsd"));
            CError.Compare(warningCount, 1, "Warning Count mismatch!");
            CError.Compare(errorCount, 0, "Error Count mismatch!");
            return;
        }