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

v21() private méthode

private v21 ( ) : void
Résultat void
        public void v21()
        {
            string xmlns = @"http://www.w3.org/XML/1998/namespace";
            string attName = "blah1";

            XmlSchemaSet ss = new XmlSchemaSet();
            ss.XmlResolver = new XmlUrlResolver();
            ss.ValidationEventHandler += new ValidationEventHandler(ValidationCallback);
            ss.Add(xmlns, Path.Combine(TestData._Root, "bug338038_v1.xsd"));
            ss.Compile();

            //test the count
            CError.Compare(ss.Count, 4, "Count of SchemaSet not matched!");

            //make sure the correct schema is in the set

            foreach (XmlSchemaAttribute a in ss.GlobalAttributes.Values)
            {
                if (a.QualifiedName.Name == attName)
                    return;
            }
            Assert.True(false);
        }