Sorry there was a typo. But the claim remains. The code for the suite should be:
| public static Test suite() {
| TestSuite suite = new TestSuite("Test for jbpm");
| //$JUnit-BEGIN$
| suite.addTest(new JbpmTest("testCleanUp"));
| suite.addTest(new JbpmTest("testDeployProcessXml"));
|
| //start a process instance
| suite.addTest(new JbpmTest("testCreateStartTaskInstance"));
|
| //do some changes in TaskMgmtDefinition
| suite.addTest(new JbpmTest("testChangeProcessDefinition"));
|
| //complete the already assigned taskInstance
| suite.addTest(new JbpmTest("testCompleteTask"));
|
| //test if the processInstance is still using the old process definition, but failed
here
| suite.addTest(new JbpmTest("testPooledTaskInstances"));
| //$JUnit-END$
| return suite;
| }
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4036914#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...