Add testing and debugging docs to the BPM guide using the community docs as the primary source of information: http://docs.jboss.org/jbpm/v5.1/userguide/ch14.html
Hi Lee, I have found wrong information in chapter 11.1.4. Configuring Persistence. By default, persistence is turned off and processes exists just in memory. To turn persistence on, the user has to do this: public class MyProcessTest extends JbpmJUnitTestCase { public MyProcessTest() { // configure this tests to use persistence in this case super(true); setPersistence(true); } ... Passing true to constructor of JbpmJUnitTestCase starts H2 server, creates data source and entity manager factory. setPersistence(true) turns on creation of JPA enabled knowledge session instead of common stateful knowledge session. In addition - just to be sure - this documentation should be based on the project documentation version 5.2, not 5.1. Regards, Radek
Thanks Radovan, Changes have been made to section to section 11.1.14 Lee
Closing as status already set to verified.