Continuous Testing(devtalk.net)
devtalk.net
Continuous Testing
http://devtalk.net/dotnet/continuous-testing/
2 comments
Continuous integration happens on very commit. You have to physically commit your changes to source control, in which case your CI system picks it up.
Continuous testing happens on every save. You safe a file, it gets synced with another machine, the build happens there. If the build succeeds, tests run and you get immediate feedback on whether you broke anything.
Continuous testing happens on every save. You safe a file, it gets synced with another machine, the build happens there. If the build succeeds, tests run and you get immediate feedback on whether you broke anything.
Sounds like it wants to be autotest from ZenTest (with added remote testing for speediferousness).
Which is great, we're using it on a 4-person jruby project right now.
Which is great, we're using it on a 4-person jruby project right now.
I could see a situation where tests running against a live system would be worthwhile, this is what I though when I saw the title.