Open floooh opened 7 years ago
Recommended as alternative to Catch: https://github.com/onqtam/doctest
...whoa. Thanks for linking doctest! I've been using Catch because it was the quickest to integrate, but the compile time cost was atrocious, this is a huge help!
Btw, for my emulator stuff and the sokol headers I'm now using https://github.com/sheredom/utest.h, it's also super-easy to integrate since it's just a single C header (not C++).
Even better, thanks! :)
For some of my C projects, I've been using Catch (DocTest now) because I couldn't find any good C testers.
See here: https://github.com/philsquared/Catch
It's header-only so probably doesn't require all the complicated build system support that UnitTest++ does...