If you are looking for a decent Unit Testing Framework that you can use with C, even in an Embedded Environment, then CppuTest is a good choice. This article explains what CppUTest is and how to...
Category: Unit Testing
When you develop software, sooner or later you will inevitably come up against the question of how to test it properly at all. What are the options and what should you watch out for? Sourcecode in...
Writing unit tests can be hard work. What can help you is the right organization and a structured approach. But what is the best way to organize Unit Tests and what exactly is the AAA...
Naming Unit Tests is hard but also very important to get it right. Other programmers and yourself in the future should understand what the test is about only by reading its name. So what is the best...
Are you programming in an Embedded C environment and wonder if Unit Testing is even possible? There is a lot of skepticism about it, so let us shine some light on this topic. Unit Testing in...
Programming Katas are good to prone your skills. A famous Kata is the Bowling Game Kata, often shown as example in Java. But can you do this Kata also in C? In total is the Bowling Game Kata in...