tpunitpp icon indicating copy to clipboard operation
tpunitpp copied to clipboard

A simple, portable C++ xUnit library contained in a single header.

Results 3 tpunitpp issues
Sort by recently updated
recently updated
newest added

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

enhancement

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

enhancement

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

enhancement