Hi,
I wanted to write a process test like this:
@IvyProcessTest
public class SampleProcessTest{
private static final BpmProcess testee = BpmProcess.path("TestProcess");
@Test
public void callProcess(BpmClient bpmClient){
BpmElement startable = testee.elementName("start.ivp");
ExecutionResult result = bpmClient.start().process(startable).execute();
CompositeObject data = result.data().last();
assertThat(data).isNotNull();
}
How can I pass parameter objects to the startable element?