Coding in large chunks ... Code verification skills

Posted by Andrew on Programmers See other posts from Programmers or by Andrew
Published on 2011-02-25T12:56:07Z Indexed on 2011/02/25 15:32 UTC
Read the original article Hit count: 471

As a follow up to my prev question:

What is the best aproach for coding in a slow compilation environment

To recap: I am stuck with a large software system with which a TDD ideology of "test often" does not work. And to make it even worse the features like pre-compiled headers/multi-threaded compilation/incremental linking, etc is not available to me - hence I think that the best way out would be to add the extensive logging into the system and to start "coding in large chunks", which I understand as code for a two-three hours first (as opposed to 15-20 mins in TDD) - thoroughly eyeball the code for a 15 minutes and only after all that do the compilation and run the tests.

As I have been doing TDD for a quite a while, my code eyeballing / code verification skills got rusty (you don't really need this that much if you can quickly verify what you've done in 5 seconds by running a test or two) - so I am after a recommendations on how to learn these source code verification/error spotting skills again.

I know I was able to do that easily some 5-10 years ago when I din't have much support from the compiler/unit testing tools I had until recently, thus there should be a way to get back to the basics.

© Programmers or respective owner

Related posts about best-practices

Related posts about programming