0 Comments

A colleague pointed me to Mighty Moose. It’s a FREE plugin for Microsoft Visual Studio and it can be used for continuous testing. CTRL+S, not only saves your code, but also builds and runs al unit tests that were impacted by the code change.

http://codebetter.com/gregyoung/2012/06/23/mighty-moose-free/

This is really very nice!

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Related Posts

PowerShell – Negate boolean – use -Not

  https://stackoverflow.com/questions/8095638/how-do-i-negate-a-condition-in-powershell     function FolderExists {     param($folder)       $folderExists = Test-Path "$($folder)"     If ($folderExists -eq $True) {         Write-Host "Folder [$($folder)] exists."…