Saturday, July 7, 2007

Background compilation vs background unit test runner

A few months ago I posted about how to get background compilation in Visual Studio by using Resharper. It's really remarkable how background tools like these can improve your productivity. Sure, you'll have to learn to ignore the red wiggly lines until you're done typing. In that respect it is no different than the spell checking in Word or Firefox. But once you know when to check the results and when to ignore them, background compilation with "in code" feedback is a real time saver. I probably would have worn out my ctrl-shift-B combo long ago without it.


This week I noticed that even though compilation is automatic, you still have to start unit tests manually. And while they're running, you have to wait for the unit tests to complete before you can continue working on your code. And if you have a substantial set of tests, like the good test-driven developer, running them may take a few minutes. So running the tests is quite disruptive to the development process.

And as you probably know, if something breaks the flow of your development process you probably won't do it as often as might be useful. Why are continuous build systems so good? Because they work automatically when you check something into your version control system. Why is background compilation so good? Because it works automatically as you're making changes to the code.

So why can't we then have the unit tests running in the background? Sure, it'll eat up some resources. But it's not like my machine needs all its megahertz's to keep up with my typing anyway. And I can only imagine how great it would be to automatically see a purple line appear under some code I just changed that broke one of the unit tests.

Sounds like cool stuff to me. Does anyone know if this already exists?

3 comments:

Mitya said...

Frank,
ReSharper Unit Test Explorer should allow you to change code while your test are run. Is this not the case with you?

Friendly
Dmitry Lomov
Technical Lead/Software Architect
JetBrains, Inc.

Frank said...

Hi Dmitry,

Thanks for your input. You're right, I can continue editing while my tests are running. I never realized that. ReSharper is exceeding my expectations once again. :-)

But what I'd like is the option to have unit tests running in the background automatically, pretty much in the same way as the compiler does today. When something I changed recently broke one of the tests, I want to see that in my code editing window - not in the Unit Test window.

Note that I'm not complaining about ReSharper, which is a great tool. My remarks were more general: why expect people to explicitly start a unit test run, where we don't force them to do so for compilation.

Frank

Unknown said...
This comment has been removed by a blog administrator.