Use CFIX_ASSERT to assert any expression. If the expression evaluates to be false, the test case is considered
to have failed. The report for a failed assertions includes the expression itself, file and line number as well
as the function name.
Declaration
void CFIX_ASSERT( __in BOOL Expression );
Usage example
CFIX_ASSERT( a == 1 );
CFIX_ASSERT( !"This will always fail" );