Hi all

I found that setting the applicationContext during the configureFlowBuilderContext works for me. All my flow tests are running fine now.

Code:
public abstract class CommonFlowTest extends AbstractXmlFlowExecutionTests { 
        @Override 
        protected void configureFlowBuilderContext(MockFlowBuilderContext serviceRegistry) { 
                
                try { 
                        serviceRegistry.getFlowBuilderServices().setApplicationContext(insert your app context.....); 
                } catch (BeansException e) { 
                        e.printStackTrace(); 
                } catch (Exception e) { 
                        e.printStackTrace(); 
                }                 
        } 
}
-Kim