use of org.camunda.bpm.engine.cdi.test.impl.beans.MessageBean in project camunda-bpm-platform by camunda.
the class ElTest method testSetBeanProperty.
@Test
@Deployment
public void testSetBeanProperty() throws Exception {
MessageBean messageBean = getBeanInstance(MessageBean.class);
runtimeService.startProcessInstanceByKey("setBeanProperty");
assertEquals("Greetings from Berlin", messageBean.getMessage());
}
Aggregations