Uses of Class
org.camunda.bpm.engine.test.assertions.bpmn.ProcessInstanceAssert
Packages that use ProcessInstanceAssert
-
Uses of ProcessInstanceAssert in org.camunda.bpm.engine.test.assertions.bpmn
Subclasses of ProcessInstanceAssert in org.camunda.bpm.engine.test.assertions.bpmnMethods in org.camunda.bpm.engine.test.assertions.bpmn that return ProcessInstanceAssertModifier and TypeMethodDescriptionstatic ProcessInstanceAssert
BpmnAwareTests.assertThat
(ProcessInstance actual) Assert that...protected static ProcessInstanceAssert
ProcessInstanceAssert.assertThat
(ProcessEngine engine, ProcessInstance actual) ProcessInstanceAssert.calledProcessInstance()
Enter into a chained process instance assert inspecting the one and mostly one called process instance currently available in the context of the process instance under test of this ProcessInstanceAssert.ProcessInstanceAssert.calledProcessInstance
(String processDefinitionKey) Enter into a chained process instance assert inspecting the one and mostly one called process instance of the specified process definition key currently available in the context of the process instance under test of this ProcessInstanceAssert.ProcessInstanceAssert.calledProcessInstance
(ProcessInstanceQuery query) Enter into a chained process instance assert inspecting a called process instance called by and currently available in the context of the process instance under test of this ProcessInstanceAssert.ProcessInstanceAssert.hasBusinessKey
(String businessKey) Verifies the expectation that theProcessInstance
has the given businessKey.ProcessInstanceAssert.hasNotPassed
(String... activityIds) Verifies the expectation that theProcessInstance
has NOT passed one or more specified activities.ProcessInstanceAssert.hasNoVariables()
Verifies the expectation that theProcessInstance
holds no process variables at all.Verifies the expectation that theProcessInstance
has passed one or more specified activities.ProcessInstanceAssert.hasPassedInOrder
(String... activityIds) Verifies the expectation that theProcessInstance
has passed one or more specified activities exactly in the given order.ProcessInstanceAssert.hasProcessDefinitionKey
(String processDefinitionKey) Verifies the expectation that theProcessInstance
has the given processDefinitionKey.ProcessInstanceAssert.hasVariables
(String... names) Verifies the expectation that theProcessInstance
holds one or more process variables with the specified names.ProcessInstanceAssert.isActive()
Verifies the expectation that theProcessInstance
is currently active, iow not suspended and not ended.ProcessInstanceAssert.isEnded()
Verifies the expectation that theProcessInstance
is ended.ProcessInstanceAssert.isNotEnded()
Verifies the expectation that theProcessInstance
is not ended.ProcessInstanceAssert.isNotWaitingAt
(String... activityIds) Verifies the expectation that theProcessInstance
is currently NOT waiting at one or more specified activities.ProcessInstanceAssert.isNotWaitingFor
(String... messageNames) Verifies the expectation that theProcessInstance
is currently waiting for one or more specified messages.ProcessInstanceAssert.isStarted()
Verifies the expectation that theProcessInstance
is started.ProcessInstanceAssert.isSuspended()
Verifies the expectation that theProcessInstance
is currently suspended.ProcessInstanceAssert.isWaitingAt
(String... activityIds) Verifies the expectation that theProcessInstance
is currently waiting at one or more specified activities.ProcessInstanceAssert.isWaitingAtExactly
(String... activityIds) Verifies the expectation that theProcessInstance
is currently waiting at exactly one or more specified activities.ProcessInstanceAssert.isWaitingFor
(String... messageNames) Verifies the expectation that theProcessInstance
is currently waiting for one or more specified messages.