Archive

Tools for tests

Posted on Mon 9 Apr, 2007

Writing test code isn’t easy at first, and writing good test code is even harder. I’ve reviewed several tools to help write better tests here, focussing on ruby.

Code Coverage

Code coverage tools attempt to analyse how much of your code has been tested. Reports are generated based on your test code, with columns expressing how much code has been tested.

Incentives for using code coverage tools are:

Continue reading → | Tagsprogramming, tips, ruby, testing