Overview of Assert Activity Execution
You can specify and validate the number of times an activity is executed in a BPEL process. The following example instructs the BPEL process to execute the invoke
, elementAssign
, invokeCR
, and replyOutput
activities one time each.
<bpelTest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.oracle.com/sca/2006/test" componentName="LoanBroker"> <assertActivityExecuted activityName="invoke" executionCount="1"/> <assertActivityExecuted activityName="elementAssign" executionCount="1"/> <assertActivityExecuted activityName="invokeCR" executionCount="1"/> <assertActivityExecuted activityName="replyOutput" executionCount="1"/> </bpelTest>
For more information about creating assert activity executions, see How to Specify the Number of Times to Execute an Activity.