I'm confusing about the code in the book and the source code.
in the book the showed me:
public class LoanRequestTest {
@Rule
public ActivitiRule activitiRule =
new ActivitiRule("activiti.cfg-mem-fullhistory.xml");
….
in the source code they showed me:
…
import org.bpmnwithactiviti.chapter5.LoanApplication;
import org.bpmnwithactiviti.common.AbstractTest;
public class LoanRequestTest extends AbstractTest {
@Rule
public ActivitiRule activitiRule = new ActivitiRule("activiti.cfg-mem-fullhistory.xml");
…
My question:
Should I extend a AbstractTest ?
and whats in it ?