Package com.exedosoft.wf.wfi

Source Code of com.exedosoft.wf.wfi.WFEngineImplTest

package com.exedosoft.wf.wfi;

import junit.framework.TestCase;

import com.exedosoft.wf.WFException;
import com.exedosoft.wf.pt.ProcessTemplate;

public class WFEngineImplTest extends TestCase {

  /*
   * Test method for 'com.exedosoft.wf.wfi.WFEngineImpl.startProcess(ProcessTemplate)'
   */
  public void testStartProcess() {
    WFEngineImpl wfi = new WFEngineImpl();
    ProcessTemplate pt = ProcessTemplate.getPTByID("567888");
    try {
      wfi.startProcess(pt);
    } catch (WFException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    }

  }

}
TOP

Related Classes of com.exedosoft.wf.wfi.WFEngineImplTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.