System.Xml.Tests.CTransformStrStrTest.TransformStrStr10 C# (CSharp) Method

TransformStrStr10() private method

private TransformStrStr10 ( ) : void
return void
        public void TransformStrStr10()
        {
            if (LoadXSL("showParam.xsl") == 1)
            {
                try
                {
                    xslt.Transform("fruits.xml", "http://www.IdontExist.com/index.xml");
                }
                catch (System.Exception e)
                {
                    _output.WriteLine(e.ToString());
                    return;
                }
            }
            _output.WriteLine("Exception not generated for invalid output destination");
            Assert.True(false);
        }