In Google Test I would like to be able to do something like this:
void ImNotNiceToPointers( void* p )
{
((int*)p) [5] = 1;
}
TEST( Bla, BlaBla )
{
EXPECT_NO_CRASH( ImNotNiceToPointers(NULL) );
}
And I would like the output to show error that the statement actually made the process die abnormally.
Is there any support for this in Google Test? I'm pretty sure how I would implement it myself, so I'm almost certain it's possible.