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="SpringAir.Core.Tests" default="build" 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
@@ -21,6 +24,13 @@
</references>
</csc>
</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">
<if test="${nant.settings.currentframework!='mono-2.0'}">
<nunit2outproc>
@@ -40,6 +50,7 @@
appconfig="${current.bin.dir}/${project::get-name()}.dll.config" />
</nunit2>
</if>
</target>
-->
</project>

View File

@@ -1,5 +1,8 @@
<?xml version="1.0" ?>
<project name="SpringAir.Data.Ado.Tests" default="build" 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
@@ -21,6 +24,13 @@
</references>
</csc>
</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" />
@@ -30,4 +40,5 @@
appconfig="${project::get-name()}.dll.config" />
</nunit2outproc>
</target>
-->
</project>