application.getExpressionFactory().createValueExpression("value3", String.class));
Flow flow = flowBuilder.getFlow();
Assert.assertNotNull(flow);
Parameter param = flow.getInboundParameters().get("name1");
Assert.assertEquals("name1", param.getName());
Assert.assertEquals("value1", param.getValue().getValue(facesContext.getELContext()));
param = flow.getInboundParameters().get("name2");
Assert.assertEquals("name2", param.getName());
Assert.assertEquals("asdf", param.getValue().getValue(facesContext.getELContext()));
param = flow.getInboundParameters().get("name3");
Assert.assertEquals("name3", param.getName());
Assert.assertEquals("value3", param.getValue().getValue(facesContext.getELContext()));
}