static TaskAssert |
BpmnAwareTests.assertThat(Task actual) |
Assert that...
|
protected static TaskAssert |
TaskAssert.assertThat(ProcessEngine engine,
Task actual) |
|
TaskAssert |
TaskAssert.hasCandidateGroup(java.lang.String candidateGroupId) |
Verifies the expectation that the Task is currently waiting to
be assigned to a user of the specified candidate group.
|
TaskAssert |
TaskAssert.hasCandidateGroupAssociated(java.lang.String candidateGroupId) |
Verifies the expectation that the Task is currently associated to the
specified candidate group - no matter whether it is already assigned to a
specific user or not.
|
TaskAssert |
TaskAssert.hasCandidateUser(java.lang.String candidateUserId) |
Verifies the expectation that the Task is currently waiting to
be assigned to a specified candidate user.
|
TaskAssert |
TaskAssert.hasCandidateUser(java.lang.String candidateUserId,
boolean unassignedOnly) |
|
TaskAssert |
TaskAssert.hasCandidateUserAssociated(java.lang.String candidateUserId) |
Verifies the expectation that the Task is currently associated to the
specified candidate user - no matter whether it is already assigned to a
specific user or not.
|
TaskAssert |
TaskAssert.hasDefinitionKey(java.lang.String taskDefinitionKey) |
Verifies the definition key of a Task .
|
TaskAssert |
TaskAssert.hasDescription(java.lang.String description) |
Verifies the description of a Task .
|
TaskAssert |
TaskAssert.hasDueDate(java.util.Date dueDate) |
Verifies the due date of a Task .
|
TaskAssert |
TaskAssert.hasFormKey(java.lang.String formKey) |
Verifies the expectation that the Task has a specified form key.
|
TaskAssert |
TaskAssert.hasId(java.lang.String id) |
Verifies the internal id of a Task .
|
TaskAssert |
TaskAssert.hasName(java.lang.String name) |
Verifies the name (label) of a Task .
|
TaskAssert |
TaskAssert.isAssignedTo(java.lang.String userId) |
Verifies the expectation that the Task is currently assigned to
the specified user.
|
TaskAssert |
TaskAssert.isNotAssigned() |
Verifies the expectation that the Task is currently not assigned to
any particular user.
|
TaskAssert |
ProcessInstanceAssert.task() |
Enter into a chained task assert inspecting the one and mostly
one task currently available in the context of the process instance
under test of this ProcessInstanceAssert.
|
TaskAssert |
ProcessInstanceAssert.task(java.lang.String taskDefinitionKey) |
Enter into a chained task assert inspecting the one and mostly
one task of the specified task definition key currently available in the
context of the process instance under test of this ProcessInstanceAssert.
|
TaskAssert |
ProcessInstanceAssert.task(TaskQuery query) |
Enter into a chained task assert inspecting only tasks currently
available in the context of the process instance under test of this
ProcessInstanceAssert.
|