How the Nunitlauncher sends the message
Hi,
I want to know " how the $(teamcity_dotnet_nunitlauncher) will recognise the test execution and how to send the messages to teamcity server. How the nunitlauncher will send the testsummary information to the teamcity.
<Target Name="runTests"> <Exec Command="$(teamcity_dotnet_nunitlauncher) v2.0 x86 NUnit-2.5.0 /category-include:test;lib /category-exclude:banned @(TestAssemblies)"> </Target>
Please sign in to leave a comment.
It uses TCP socket to communicate to TeamCity . All parameters are transferend in a text file that is refered from environment variables.
Eugene,
Thanks for your reply.