public void testInclusiveGatewayUnmarshalling() throws Exception {
Bpmn2JsonUnmarshaller unmarshaller = new Bpmn2JsonUnmarshaller();
Definitions definitions = unmarshaller.unmarshall(getTestJsonFile("inclusiveGateway.json"));
assertTrue(definitions.getRootElements().size() == 1);
Process process = (Process) definitions.getRootElements().get(0);
InclusiveGateway g = (InclusiveGateway) process.getFlowElements().get(0);
assertEquals("inclusive gateway", g.getName());
definitions.eResource().save(System.out, Collections.emptyMap());
}