upgraded to nunit 2.5.1 for running unit tests

integrated ncover for code coverage analysis
switched COM integration tests to explicit
This commit is contained in:
eeichinger
2009-07-14 22:37:59 +00:00
parent ec75e5c13a
commit 47762e3f0f
149 changed files with 25726 additions and 184 deletions

View File

@@ -1,5 +1,8 @@
<?xml version="1.0" ?>
<project name="Spring.Data.Tests" default="test" xmlns="http://nant.sf.net/schemas/nant.xsd">
<include buildfile="${spring.basedir}/common-project.include" />
<!--
Required properties:
* current.bin.dir - (path) root level to build to
@@ -40,6 +43,13 @@
<copy file="${project::get-base-directory()}/${project::get-name()}.dll.config"
tofile="${current.bin.dir}/${project::get-name()}.dll.config"/>
</target>
<target name="test" depends="build">
<!-- property name="test.assemblyname" value="${project::get-name()}" / -->
<call target="common.run-tests" />
</target>
<!--
<target name="test" depends="build">
<nunit2outproc>
<formatter type="Plain" />
@@ -48,4 +58,5 @@
<test assemblyname="${current.bin.dir}/${project::get-name()}.dll" />
</nunit2outproc>
</target>
-->
</project>

View File

@@ -77,6 +77,7 @@ namespace Spring.Transaction.Config
ctx = new XmlApplicationContext("assembly://Spring.Data.Tests/Spring.Transaction.Config/TxNamespaceParserTests.xml");
}
// TODO (EE)
[Test]
public void AppliesTxAttributeDrivenAttributes()
{