tpunitpp
tpunitpp copied to clipboard
A simple, portable C++ xUnit library contained in a single header.
This change adds an (optional) name to a `TestFixture`. This allows you to create a `TestFixture` as such: ``` MyTest() : tpunit::TestFixture(BEFORE_CLASS(MyTest::setup), TEST(MyTest::testMyThing), AFTER_CLASS(StripeTest::tearDown)) { NAME(MyTest); } ``` And then...
Hi @tpounds, As our usage of your mini-library grows, our list of unit tests is getting longer and longer to run. I was wondering and wanted to ask you: have...
It would be nice if the assertions showed expected values instead of just a failure: ``` #include #include "tpunit++.hpp" struct BNetworkAddressFixture : public tpunit::TestFixture { BNetworkAddressFixture() : tpunit::TestFixture( TEST(BNetworkAddressFixture::tSetToIPv4), TEST(BNetworkAddressFixture::tSetToIPv6)...