jdbcfunctionalworkflowtestcase.java

来自「osworkflow修改版本」· Java 代码 · 共 49 行

JAVA
49
字号
/* * Copyright (c) 2002-2003 by OpenSymphony * All rights reserved. */package com.opensymphony.workflow.spi.jdbc;import com.opensymphony.workflow.config.Configuration;import com.opensymphony.workflow.config.DefaultConfiguration;import com.opensymphony.workflow.spi.BaseFunctionalWorkflowTest;import com.opensymphony.workflow.spi.DatabaseHelper;import java.util.HashMap;/** * This test case is functional in that it attempts to validate the entire * lifecycle of a workflow.  This is also a good resource for beginners * to OSWorkflow.  This leverages Hibernate as teh * * @author Eric Pugh (epugh@upstate.com) */public class JDBCFunctionalWorkflowTestCase extends BaseFunctionalWorkflowTest {    //~ Constructors ///////////////////////////////////////////////////////////    public JDBCFunctionalWorkflowTestCase(String s) {        super(s);    }    //~ Methods ////////////////////////////////////////////////////////////////    public void testTrigger() throws Exception {        String workflowName = getClass().getResource("/samples/scheduler.xml").toString();        assertTrue("canInitialize for workflow " + workflowName + " is false", workflow.canInitialize(workflowName, 1));        long id = workflow.initialize(workflowName, 1, new HashMap());        Thread.sleep(500);        assertEquals("trigger was not fired", "blahblah", workflow.getPropertySet(id).getString("testTrigger"));    }    protected void setUp() throws Exception {        super.setUp();        DatabaseHelper.createDatabase(getClass().getResource("/scripts/jdbc/mckoi.sql"));        Configuration config = new DefaultConfiguration();        config.load(getClass().getResource("/osworkflow-jdbc.xml"));        workflow.setConfiguration(config);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?