System.Xml.Tests.CXmlSchemaValidatorTestCase.ValidateSchemaSet C# (CSharp) Method

ValidateSchemaSet() public method

public ValidateSchemaSet ( XmlSchemaSet ss, int schCount, bool isCompiled, int countGT, int countGE, int countGA, string str ) : void
ss System.Xml.Schema.XmlSchemaSet
schCount int
isCompiled bool
countGT int
countGE int
countGA int
str string
return void
        public void ValidateSchemaSet(XmlSchemaSet ss, int schCount, bool isCompiled, int countGT, int countGE, int countGA, string str)
        {
            _output.WriteLine(str);
            Assert.Equal(ss.Count, schCount);
            Assert.Equal(ss.IsCompiled, isCompiled);
            Assert.Equal(ss.GlobalTypes.Count, countGT);
            Assert.Equal(ss.GlobalElements.Count, countGE);
            Assert.Equal(ss.GlobalAttributes.Count, countGA);
        }
    }