The Hello World program is the best way to test a new language or concept. How can you apply this concept to a Unit Testing Framework, specifically to Google Test? In total you have to Setup...
Category: Unit Testing
You want to start Unit Testing in C and you want to use an existing Framework for this task. But how can you know which of all these Frameworks is the one that fits your need the best? There are...
When you program and unit test in C++ you may have used the Google Test framework. There are several unit testing frameworks for pure C, but is it also possible to use Google Test? Unit Testing in...
When I started Unit Testing, I was like most people at the beginning - I wanted to have full code coverage and test every line that I wrote in production code. But is this desirable, let alone...
Testing your code is an essential task for every software developer. Especially as a professional programmer you have to make sure that the software works as intended and is as bug free as possible....