Tag Archives: testing

Debug war story

Time for a war story: I’ve been just debugging a rather interesting bug. The application is written in C++. Symptoms: Starting the release build by double clicking fails Starting the release build from the command line works Appending a debugger … Continue reading

Posted in Programming | Tagged , , , | Leave a comment

Some notes about testing

Before you get the wrong impression, I’m also writing code besides writing test code, but it’s still very much work in progress, so I don’t want to talk too much about it yet. So back to testing, which I’m practicing … Continue reading

Posted in Programming | Tagged | 1 Comment

Test on multiple platforms

Just testing on one platform is not enough. Over the last two days, I’ve been porting a fairly large project over to Linux, and today I fixed the last problems. So far, all 400 unit tests that work on x86 … Continue reading

Posted in Programming | Tagged , | 1 Comment

Invest in testing

The title line says it all. Invest time in testing, the earlier, the better. Recently, I’ve been (re-)implementing some fairly simple class here, with a few unit tests. I tend to test at least the basic functionality with unit tests … Continue reading

Posted in Programming | Tagged | Leave a comment