public void testConditionGT()
{
try {
log.info( "Testing SEVERITY @gt 4" );
log.info( " event SEVERITY: " + ValueExtractor.extractValues( AuditEvent.SEVERITY, event ) ); //event.getAll( AuditEvent.SEVERITY ) );
Condition c = new ConditionGT( "SEVERITY", "4" );
if( c.matches( event ) )
fail( "Failed to match ConditionGT on SEVERITY with value '4' !" );
} catch (Exception e) {
fail( "Error: " + e.getMessage() );
}
}