views:

406

answers:

1

I want to to run nunit summary.exe after successful completion of NUnit Tests assembly. I am calling nunit from a batch file and then I want to call nunit summary. Any idea how to do this

+1  A: 

Just add nunit summary.exe after the call to nunit.console.exe in your batch file. If you want more control than that you should checkout Powershell which would make it much easier to check if the results.xml file exists after your test run.

Wesley Wiser