⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pollingtestcase.java

📁 使用spring构建一个简单的工作流引擎
💻 JAVA
字号:

package org.iocworkflow.test.sequence.ratedrop;

import junit.framework.Test;
import junit.framework.TestSuite;

import org.iocworkflow.test.AbstractTestCase;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;


/**
 * Class:SimpleSequenceTest
 * Creation Date: Mar 8, 2005
 * CVS ID $Id:$
 * 
 * Class Descriptoin goes here
 * 
 *  @author sdodge
 *  @since $Date:$
 */
public class PollingTestCase extends AbstractTestCase {

    private ApplicationContext context;
    
    public PollingTestCase(String testName)
    {
        super(testName);
    }
    
    protected void setUp() throws Exception {
        String[] locations = {"org/iocworkflow/test/sequence/ratedrop/rateDrop.xml",
                "org/iocworkflow/test/sequence/ratedrop/pollingRateDrop.xml"};
        context = new ClassPathXmlApplicationContext(locations);
        
    }
    
  
    
    public void testWorkflowSequence() throws Exception
    {

        //basically we wait and watch the logs while the poller does it stuff
        Thread.sleep(10000);

    }
    


    protected void tearDown() throws Exception {
        ((ClassPathXmlApplicationContext)context).close();
    }
    
    /**
     * @return the suite of tests being tested
     */
    public static Test suite()
    {
        return new TestSuite( PollingTestCase.class );
    }
}

⌨️ 快捷键说明

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