Unittesting with CPPUnit

For our Instant messenger project we would like to use CPPUnit for unit testing. After some research we found the haiku port of CPPUnit in the SVN repository.

At this point we would like to use CPPUnit to assert that some exceptions are thrown on invalid input.

According to the CPPUnit manual there should be an macro for this type of validation:
CPPUNIT_ASSERT_THROW(expression, ExceptionType)

However we can’t seem to find/use this macro with the Haiku CPPUnit-port. Could someone point me in the right direction?