factPopulator.add( new NewFactPopulator( populatedData, typeResolver, lst ) );
factPopulator.populate();
Cheesery listChesse = (Cheesery) populatedData.get( "listChesse" );
Cheese f1 = (Cheese) populatedData.get( "f1" );
Cheese f2 = (Cheese) populatedData.get( "f2" );
Cheese f3 = (Cheese) populatedData.get( "f3" );
assertEquals( 3, listChesse.getCheeses().size() );
assertTrue( listChesse.getCheeses().contains( f1 ) );
assertTrue( listChesse.getCheeses().contains( f2 ) );
assertTrue( listChesse.getCheeses().contains( f3 ) );