Update of /cvsroot/mvp-xml/Common/v2/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16810/v2/test
Modified Files:
CommonTest.csproj IndexingXPathNavigatorTest.cs
Added Files:
EntryPoint.cs
Log Message:
Index: CommonTest.csproj
===================================================================
RCS file: /cvsroot/mvp-xml/Common/v2/test/CommonTest.csproj,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- CommonTest.csproj 29 Oct 2005 21:13:11 -0000 1.4
+++ CommonTest.csproj 7 Nov 2005 13:58:18 -0000 1.5
@@ -111,6 +111,7 @@
<SubType>Code</SubType>
</Compile>
<Compile Include="EmptyXPathNodeIteratorTests.cs" />
+ <Compile Include="EntryPoint.cs" />
<Compile Include="Globals.cs">
<SubType>Code</SubType>
</Compile>
@@ -175,7 +176,9 @@
<Compile Include="XPathSortBug.cs">
<SubType>Code</SubType>
</Compile>
+ <Compile Include="XslReaderTests\XslReaderTests.cs" />
<Content Include="changelog.txt" />
+ <Content Include="XslReaderTests\test1.xslt" />
<EmbeddedResource Include="library.xml" />
<EmbeddedResource Include="northwind.xml" />
<EmbeddedResource Include="pubs.xml" />
--- NEW FILE: EntryPoint.cs ---
using System;
using System.Collections.Generic;
using System.Text;
using Mvp.Xml.Tests.XslReaderTests;
namespace Mvp.Xml.Tests.Common
{
class EntryPoint
{
static void Main(string[] args)
{
XslReaderTests.XslReaderTests t = new XslReaderTests.XslReaderTests();
t.Test5();
}
}
}
Index: IndexingXPathNavigatorTest.cs
===================================================================
RCS file: /cvsroot/mvp-xml/Common/v2/test/IndexingXPathNavigatorTest.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- IndexingXPathNavigatorTest.cs 28 Oct 2005 20:01:48 -0000 1.2
+++ IndexingXPathNavigatorTest.cs 7 Nov 2005 13:58:18 -0000 1.3
@@ -17,11 +17,11 @@
[Test]
public void RunTests()
{
- Main(new string[0]);
+ Main2(new string[0]);
}
[STAThread]
- static void Main(string[] args)
+ static void Main2(string[] args)
{
Stopwatch stopWatch = new Stopwatch();
int repeat = 1000;
|