Somehow the TSM_ASSERT macro seems to not produce output for valid assertions but on invalid assertions.
We currently implemented a work around with TSM_ASSERT_EQUALS...
TSM_ASSERT("message" , methodThatReturnTrue()); --> no Output
TSM_ASSERT("message" , methodThatReturnFalse()); --> Output!
TSM_ASSERT_EQUALS("message", TRUE, methodThatReturnTrue()); --> Output!
Is this a bug or did I misconfigured CxxTest, since even with the option -v i did not worked properly.
Regards