System.Xml.Tests.CExceptionHandler.CExceptionHandler C# (CSharp) Method

CExceptionHandler() public method

public CExceptionHandler ( string strXmlFile, string ns, ITestOutputHelper output ) : Xunit
strXmlFile string
ns string
output ITestOutputHelper
return Xunit
        public CExceptionHandler(string strXmlFile, string ns, ITestOutputHelper output)
        {
            _exVer = new ExceptionVerifier(ns, ExceptionVerificationFlags.IgnoreMultipleDots, output);

            _doc = new XPathDocument(strXmlFile);
            _nav = ((IXPathNavigable)_doc).CreateNavigator();

            _output = output;
        }