24 lines
670 B
Java
24 lines
670 B
Java
package webflow.templates;
|
|
|
|
import java.util.Map;
|
|
|
|
import org.springframework.webflow.definition.registry.FlowDefinitionResource;
|
|
import org.springframework.webflow.test.execution.AbstractXmlFlowExecutionTests;
|
|
import org.springframework.webflow.test.execution.MockFlowServiceLocator;
|
|
|
|
public class FlowExecutionTestTemplate extends AbstractXmlFlowExecutionTests {
|
|
|
|
public void testStartFlow() {
|
|
|
|
}
|
|
|
|
@Override
|
|
protected FlowDefinitionResource getFlowDefinitionResource() {
|
|
return createFlowDefinitionResource("/path/to/myflow.xml");
|
|
}
|
|
|
|
@Override
|
|
protected void registerMockServices(MockFlowServiceLocator serviceRegistry) {
|
|
|
|
}
|
|
} |