floooh / oryol

A small, portable and extensible C++ 3D coding framework
MIT License
2k stars 200 forks source link

Consider switching from unittestpp to Catch? #273

Open floooh opened 7 years ago

floooh commented 7 years ago

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...

floooh commented 7 years ago

Recommended as alternative to Catch: https://github.com/onqtam/doctest

pixelherodev commented 5 years ago

...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!

floooh commented 5 years ago

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++).

pixelherodev commented 5 years ago

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.