From: Oleg T. <he...@us...> - 2004-11-03 13:09:50
|
Update of /cvsroot/mvp-xml/XInclude/v1/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2798/v1/test Modified Files: XIncludeReaderTests.cs XIncludeTest.csproj Log Message: Test for some old bug. Index: XIncludeTest.csproj =================================================================== RCS file: /cvsroot/mvp-xml/XInclude/v1/test/XIncludeTest.csproj,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- XIncludeTest.csproj 3 Nov 2004 12:55:46 -0000 1.13 +++ XIncludeTest.csproj 3 Nov 2004 13:09:35 -0000 1.14 @@ -175,6 +175,10 @@ BuildAction = "Content" /> <File + RelPath = "results\test-Martin.xml" + BuildAction = "Content" + /> + <File RelPath = "results\working_example.xml" BuildAction = "Content" /> @@ -251,6 +255,10 @@ BuildAction = "Content" /> <File + RelPath = "tests\table.xml" + BuildAction = "Content" + /> + <File RelPath = "tests\test2.xml" BuildAction = "Content" /> Index: XIncludeReaderTests.cs =================================================================== RCS file: /cvsroot/mvp-xml/XInclude/v1/test/XIncludeReaderTests.cs,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- XIncludeReaderTests.cs 3 Nov 2004 12:55:46 -0000 1.14 +++ XIncludeReaderTests.cs 3 Nov 2004 13:09:35 -0000 1.15 @@ -340,6 +340,15 @@ RunAndCompare("../../tests/resolver.xml", "../../results/resolver.xml", false, new TestResolver()); } + /// <summary> + /// Test for a bug discovered by Martin Wickett. + /// </summary> + [Test] + public void Test_Martin() + { + RunAndCompare("../../tests/test-Martin.xml", "../../results/test-Martin.xml"); + } + } public class TestResolver : XmlUrlResolver |