So I\'ve come to like and enjoy using Google Test for a C++ project I\'m involved in. I\'m just bringing up a new project that will be straight C (a library) and so far can
I just thought I'd add another point: since gtest is C++, you'll be parsing your C headers under test as C++. This means the tests don't guarantee that the headers are consumable from C. I recently ran into this with a C library I'm building.