System.Xml.Tests.TC_SchemaSet_Count.v3 C# (CSharp) Method

v3() private method

private v3 ( ) : void
return void
        public void v3()
        {
            XmlSchemaSet sc = new XmlSchemaSet();
            sc.Add("xsdauthor", TestData._XsdAuthor);
            sc.Add(null, Path.Combine(TestData._Root, "xsdbookexternal.xsd"));

            CError.Compare(sc.Count, 2, "Count");

            return;
        }
    }