final GuidedDecisionTableUtils utils = new GuidedDecisionTableUtils( oracle,
dt );
final ConditionCol52 c1 = new ConditionCol52();
final Pattern52 p1 = new Pattern52();
p1.setBoundName( "c1" );
p1.setFactType( "Driver" );
c1.setConstraintValueType( BaseSingleFieldConstraint.TYPE_RET_VALUE );
c1.setFieldType( DataType.TYPE_STRING );
c1.setValueList( "getAge()>10,getAge()>20,getAge()>30" );
p1.getChildColumns().add( c1 );
dt.getConditions().add( p1 );
assertTrue( utils.getValueList( c1 ).length > 0 );
assertTrue( utils.getValueList( c1 ).length == 3 );
assertEquals( "getAge()>10",