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