final RuleBase rb = buildRuleBase(drl);
WorkingMemory wm = rb.newStatefulSession();
//now create some test data
wm.insert( new Cheese( "stilton",
42 ) );
wm.insert( new Person( "michael",
"stilton",
42 ) );
final List<String> list = new ArrayList<String>();