@Test
public void simpleProcessExecution() {
ProcessDefinition process = new ProcessDefinitionImpl();
StartEventNode startEvent = new StartEventNode();
process.addNode(0L, startEvent);
ActionNode actionNode = new ActionNode(new Action() {
@Override
public void execute() {
System.out.println("Executing the Action!!");
}