Reputation: 309
I'm wondering about a couple of things about Nant:
Can I test an execution of an .exe by using a nant script and then have it terminate immediately afterwards. Should maybe clarify that this is a form application that needs to be verified that it starts and exits normally with a build script.
Are there any programs I can run through NAnt script than can take care of code coverage and code inspection that I can get online (free preferably :Ð ).
Upvotes: 0
Views: 90
Reputation: 98
As far as I know, there's no way to terminate your form application from within Nant once it is executed. Maybe if the application was set up to automatically exit if a certain command line argument was passed to it?
I user NCover, which works really well. It's not free though. :(
Upvotes: 1