TDD

Mastering CMake

Submitted by slavikt on Wed, 12/03/2008 - 01:01.

Ok, I was silent here for a long time. Lot's of things have changed, huge pile of new things learned. Let's continue.

During last few weeks I'm learning the CMake. Bought the "Mastering CMake" book (which is not as good as I have expected), read it, experimented a little.

Now I have two things to share about this system which are not covered by official docs and I haven't found them with google (at least in the clear Q&A form).  read more »

|

Trying pure TDD with Modern C++

Submitted by slavikt on Sun, 11/26/2006 - 22:30.

I really like Test Driving Development. In theory. But I have some problems applying it in the real life. I believe that the problems are because of lack of understanding, not because of holes in TDD.

Of course, some parts of the code I write are a good fit for unit-testing. Often there are subsystems used internally in the software, without interoperating with the environment... These are easy to test because of obvious interfaces and because they do not require mocking. But testing first the physical or GUI related code is still a kind of question for me. That's why I have started a little experimental project and I'm going to develop it using pure TDD only.  read more »

|