flowActivity2.addPropertyDefinitions(globalProperty);
String flowTypeName = flowTestingUtils.addFlowDefinition(flowActivity0, flowActivity1, flowActivity2);
FlowManagement flowManagement = flowTestingUtils.getFlowManagement();
Map<String, String> initialFlowState = FlowUtils.INSTANCE.createState(propertyName, "maybe");
FlowState flowState = flowManagement.startFlowState(flowTypeName, false, initialFlowState , null);
assertNotNull(flowState);
String propertyValue = flowState.getProperty(propertyName, String.class);
assertEquals("true",propertyValue, "flowState="+flowState+" propertyValue="+propertyValue);
flowState.next();
propertyValue = flowState.getProperty(propertyName, String.class);