Best Unit Testing Framework for C
Using SDL2 in C
Recent Articles
When you need a collection or container with more flexibility than an Array provides, the first data structure you'll usually go to is a Vector. Vectors are part of the STL in C+ as...
Functional Programming is getting more and more popular these days. Although this programming concept exists since the 1950's and is already present in languages like LISP, most programming languages...
Writing Shader Code within the source code of the "normal" application is very tiring. You also don't have syntax highlighting because you have to provide it in a string variable, not to mention...
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...