Need an operational, automatic, background compiler and test runner for C # .Net

I searched googled and played with test scripts (powershell / spec / nunit / msbuild). I am looking for a tester who will monitor my code and will constantly rebuild and re-run all my tests for a solution. I am currently using Resharper, which has real-time compilation analysis of my code, a test pilot resolver, and a testable .Net.

If the solution was automatically compiled, conducted my tests and gave a report with a red / green dot (maybe even give me a report with hyperlinks), that would be ideal.

Edit: I found exactly what I was looking for: the tool I found does exactly what I want: http://www.ncrunch.net/ This is not an ad.

Also, TestDriven.Net with a shortcut (cntrl + shift + q) works very well.

+4
source share
3 answers

James Avery created something like this some time ago: http://averyblog.com/net/announcing-autotest-net-0-1/

It looks like the google code project is still around.

+2
source

NCrunch is starting to look promising.

+12
source

Such a tool is called a build server and regular commits (for example, with distributed source control).

Interestingly, have you ever seen this work in VS right somewhere? After VS starts compiling or a test run, it is dead, so you won’t be able to work until it is done (sometimes within a few minutes if the assembly and testing contain the whole solution). The background process is also not like a solution, because it can cause file locking (if shadow copy is not used, which can lead to other problems).

0
source

All Articles