package de.uniba.dsg.bpmnspector.schematron.descriptive; import api.ValidationResult; import api.ValidationException; import de.uniba.dsg.bpmnspector.schematron.TestCase; import org.junit.Test; /** * Test class for testing Constraint EXT.107 * * @author Philipp Neugebauer * @version 1.0 * */ public class Ext107 extends TestCase { @Test public void testConstraintFail() throws ValidationException { ValidationResult result = verifyInvalidResult(createFile("fail.bpmn"), 2); assertViolation( result.getViolations().get(0), "The target element of the sequence flow must reference the SequenceFlow definition using their incoming attribute.", "//bpmn:sequenceFlow[@targetRef][0]", 9); assertViolation(result.getViolations().get(1), "An End Event MUST have at least one incoming Sequence Flow", "//bpmn:endEvent[0]", 4); } @Test public void testConstraintSuccess() throws ValidationException { verifyValidResult(createFile("success.bpmn")); } @Override protected String getExtNumber() { return "107"; } }