}
public void testTransition1() throws Throwable{
//Start the Workflow
SpringStarter myBean = (SpringStarter) context.getBean(TEST_BEAN);
//Depends on it being configure in the App-Context to be an instance of this class
ParameterWorkflowStrategy pStrat = (ParameterWorkflowStrategy) myBean.getStarterStrategy();
pStrat.param1="test";
pStrat.param2="TestInput1";
myBean.startWorkflow();
//Now Carry out some assertions
List<ExecutionContext> execList = TestActionHandler.getPreviousExecutions();
assertEquals(1,execList.size());
log.debug("NodeName:"+execList.get(0).getNode().getName());