TDD Guided by ZOMBIES
Have you had a hard time figuring out where to start with Test-Driven Development. What if ZOMBIES could help you build code that does exactly what you think it is supposed to do? What if ZOMBIES at...
View ArticleCause and Effect – Foundation of TDD
Virtually every line of code is written in response to some failure. It often is a test failure, but might be a compilation failure, or a web page that does not exist. Through my 16 years of...
View ArticleDamn, I used to think I was good at programming
I used to think I was good at programming. Since I started doing TDD in 1999, I’ve come to discover that I am not so good. I make a lot of little mistakes. Copy-paste is a specifically error-prone...
View ArticleLinker Substitution in C – Limitations and Workarounds
Let’s say you have code that in some test cases you want the real code and other test cases you want a test double. In C, using link-time binding, you only get to have a single function with a...
View ArticleThoughts on TDD (After almost 20 years)
I used to think I was good at programming (1976–1999), then I started doing Test-Driven Development. Since then I discovered that I make mistakes regularly. TDD puts your mistakes in your face,...
View ArticleIs SAFe safe for your organization? I don’t know.
If your definition of safe, is like “no one has even been fired for choosing IBM”, SAFe may be safe. Though, you really need to consider, will it help your organization improve? I hoped that Scrum...
View ArticleIn the beginning, there was no code…
…and it was good. Why is it that code starts out nice and deteriorates over time? What happened happened to make the code badness grow? Probably something joyous like the first order for a new product...
View ArticleResponsibilities of the Test-Driven Developer in a Legacy Code Base
This is a follow-up question from an attendee of a recent TDD for Embedded C++ training course. What exactly is a person’s responsibility for unit testing when they go into existing untested code?...
View ArticleWrestle Legacy C and C++ into a Test Harness – Linker Errors
Getting started with TDD in C and C++ is challenging. On top of that, you have your whole product’s code base to start adding tests to. You don’t have time to stop all development and add tests to...
View ArticleSelf-Paced Training: TDD for Embedded C/C++
Hello Friends I am developing a series of self-paced training modules for Test-Driven Development for Embedded C and C++. The training modules will have exercises to cement the learning. I’ll offer...
View Article