CleanCode v1.2.07 AntDoc

Press that icon in order to update AntDoc GUI

sourceforgeBuild
Target csharp.test.filtered

csharp.test.filtered

Perform NUnit tests on C# code. By default all tests will be run. One may alternately use selective tests by specifying -Dfilter=list on the ant command line, where "list" is a colon-separated list of namespace suffixes (i.e. xxx:yyy for CleanCodeTest.xxx and CleanCodeTest.yyy).

Detail:
<target
	if="filter"
	name="csharp.test.filtered"
>
	<for
		delimiter=":"
		keepgoing="true"
		list="${filter}"
		param="namespace"
	>
		<sequential>
			<echo>-- @{namespace} --</echo>

			<exec
				dir="${csharp}/CleanCodeTest"
				executable="${nunit}"
			>
				<arg value="/labels"/>

				<arg value="/nologo"/>

				<arg value="/fixture:CleanCodeTest.@{namespace}"/>

				<arg value="${csharp}/CleanCodeTest/bin/Release/CleanCodeTest.dll"/>
			</exec>
		</sequential>
	</for>
</target>


Edouard Mercier 2003.10.01 21:48:07 - AntDoc V0.8g - XSL Transformer Factory: org.apache.xalan.processor.TransformerFactoryImpl