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