Does CPPUnit have any functionality that would allow me to do printf
-style assertions? For example:
CPPUNIT_ASSERT("Actual size: %d", p->GetSize(), p->GetSize() == 0);
I know this is not a valid CPPUNIT_ASSERT - I am just using this as an example.
I found CPPUNIT_ASSERT_MESSAGE(message,condition)
which takes a string and then the condition to evaluate but no luck getting the value into the assert.
You should be able to do something like this:
The above macro can also be combined with Boost.format: