System.Xml.Tests.TC_SchemaSet_Misc.v109 C# (CSharp) Méthode

v109() private méthode

private v109 ( ) : void
Résultat void
        public void v109()
        {
            Initialize();
            XmlSchemaSet ss = new XmlSchemaSet();
            ss.XmlResolver = new XmlUrlResolver();
            ss.ValidationEventHandler += new ValidationEventHandler(ValidationCallback);
            ss.Add("http://EmployeeTest.org", Path.Combine(TestData._Root, "EmployeeTypes.xsd"));
            ss.Add(null, Path.Combine(TestData._Root, "EmployeeTypes.xsd"));

            CError.Compare(warningCount, 0, "Warning Count mismatch!");
            CError.Compare(errorCount, 0, "Error Count mismatch!");

            return;
        }