|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.assertj.core.api.AbstractAssert<S,A>
org.camunda.bpm.engine.test.assertions.AbstractProcessAssert<TaskAssert,org.camunda.bpm.engine.task.Task>
org.camunda.bpm.engine.test.assertions.TaskAssert
public class TaskAssert
Assertions for a Task
| Field Summary |
|---|
| Fields inherited from class org.camunda.bpm.engine.test.assertions.AbstractProcessAssert |
|---|
engine |
| Fields inherited from class org.assertj.core.api.AbstractAssert |
|---|
actual, info, myself |
| Constructor Summary | |
|---|---|
protected |
TaskAssert(org.camunda.bpm.engine.ProcessEngine engine,
org.camunda.bpm.engine.task.Task actual)
|
| Method Summary | |
|---|---|
protected static TaskAssert |
assertThat(org.camunda.bpm.engine.ProcessEngine engine,
org.camunda.bpm.engine.task.Task actual)
|
protected org.camunda.bpm.engine.runtime.ExecutionQuery |
executionQuery()
|
protected org.camunda.bpm.engine.task.Task |
getCurrent()
|
TaskAssert |
hasCandidateGroup(String candidateGroupId)
Verifies the expectation that the Task is currently waiting to
be assigned to a user of the specified candidate group. |
TaskAssert |
hasDefinitionKey(String taskDefinitionKey)
Verifies the definition key of a Task. |
TaskAssert |
hasDescription(String description)
Verifies the description of a Task. |
TaskAssert |
hasDueDate(Date dueDate)
Verifies the due date of a Task. |
TaskAssert |
hasId(String id)
Verifies the internal id of a Task. |
TaskAssert |
hasName(String name)
Verifies the name (label) of a Task. |
protected org.camunda.bpm.engine.history.HistoricActivityInstanceQuery |
historicActivityInstanceQuery()
|
protected org.camunda.bpm.engine.history.HistoricDetailQuery |
historicDetailQuery()
|
protected org.camunda.bpm.engine.history.HistoricProcessInstanceQuery |
historicProcessInstanceQuery()
|
protected org.camunda.bpm.engine.history.HistoricTaskInstanceQuery |
historicTaskInstanceQuery()
|
protected org.camunda.bpm.engine.history.HistoricVariableInstanceQuery |
historicVariableInstanceQuery()
|
TaskAssert |
isAssignedTo(String userId)
Verifies the expectation that the Task is currently assigned to
the specified user. |
TaskAssert |
isNotAssigned()
Verifies the expectation that the Task is currently not assigned to
any particular user. |
protected org.camunda.bpm.engine.runtime.JobQuery |
jobQuery()
|
protected org.camunda.bpm.engine.repository.ProcessDefinitionQuery |
processDefinitionQuery()
|
protected org.camunda.bpm.engine.runtime.ProcessInstanceQuery |
processInstanceQuery()
|
protected org.camunda.bpm.engine.task.TaskQuery |
taskQuery()
|
protected String |
toString(org.camunda.bpm.engine.task.Task task)
|
protected org.camunda.bpm.engine.runtime.VariableInstanceQuery |
variableInstanceQuery()
|
| Methods inherited from class org.camunda.bpm.engine.test.assertions.AbstractProcessAssert |
|---|
authorizationService, formService, getActual, getExistingCurrent, getLastAssert, historyService, identityService, managementService, repositoryService, resetLastAsserts, runtimeService, taskService |
| Methods inherited from class org.assertj.core.api.AbstractAssert |
|---|
as, as, describedAs, describedAs, descriptionText, doesNotHave, doesNotHaveSameClassAs, equals, failWithMessage, getWritableAssertionInfo, has, hashCode, hasSameClassAs, inBinary, inHexadecimal, is, isEqualTo, isExactlyInstanceOf, isIn, isIn, isInstanceOf, isInstanceOfAny, isNot, isNotEqualTo, isNotExactlyInstanceOf, isNotIn, isNotIn, isNotInstanceOf, isNotInstanceOfAny, isNotNull, isNotOfAnyClassIn, isNotSameAs, isNull, isOfAnyClassIn, isSameAs, overridingErrorMessage, usingComparator, usingDefaultComparator |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
protected TaskAssert(org.camunda.bpm.engine.ProcessEngine engine,
org.camunda.bpm.engine.task.Task actual)
| Method Detail |
|---|
protected static TaskAssert assertThat(org.camunda.bpm.engine.ProcessEngine engine,
org.camunda.bpm.engine.task.Task actual)
protected org.camunda.bpm.engine.task.Task getCurrent()
getCurrent in class AbstractProcessAssert<TaskAssert,org.camunda.bpm.engine.task.Task>public TaskAssert isNotAssigned()
Task is currently not assigned to
any particular user.
TaskAssertpublic TaskAssert isAssignedTo(String userId)
Task is currently assigned to
the specified user.
userId - id of the user the task should be currently assigned to.
TaskAssertpublic TaskAssert hasCandidateGroup(String candidateGroupId)
Task is currently waiting to
be assigned to a user of the specified candidate group.
candidateGroupId - id of the candidate group the task is assigned to
TaskAssertpublic TaskAssert hasDueDate(Date dueDate)
Task.
dueDate - the date the task should be due at
TaskAssertpublic TaskAssert hasDefinitionKey(String taskDefinitionKey)
Task. This key can be found
in the <userTask id="myTaskDefinitionKey" .../> attribute of the
process definition BPMN 2.0 XML file.
taskDefinitionKey - the expected value of the task/@id attribute
TaskAssertpublic TaskAssert hasId(String id)
Task.
id - the expected value of the internal task id
TaskAssertpublic TaskAssert hasName(String name)
Task. This name can be found
in the <userTask name="myName" .../> attribute of the
process definition BPMN 2.0 XML file.
name - the expected value of the name
TaskAssertpublic TaskAssert hasDescription(String description)
Task. This description can be found
in the <userTask><documentation>description</documentation></userTask>
element of the process definition BPMN 2.0 XML file.
description - the expected value of the description
TaskAssertprotected String toString(org.camunda.bpm.engine.task.Task task)
toString in class AbstractProcessAssert<TaskAssert,org.camunda.bpm.engine.task.Task>protected org.camunda.bpm.engine.task.TaskQuery taskQuery()
taskQuery in class AbstractProcessAssert<TaskAssert,org.camunda.bpm.engine.task.Task>protected org.camunda.bpm.engine.runtime.JobQuery jobQuery()
jobQuery in class AbstractProcessAssert<TaskAssert,org.camunda.bpm.engine.task.Task>protected org.camunda.bpm.engine.runtime.ProcessInstanceQuery processInstanceQuery()
processInstanceQuery in class AbstractProcessAssert<TaskAssert,org.camunda.bpm.engine.task.Task>protected org.camunda.bpm.engine.runtime.ExecutionQuery executionQuery()
executionQuery in class AbstractProcessAssert<TaskAssert,org.camunda.bpm.engine.task.Task>protected org.camunda.bpm.engine.runtime.VariableInstanceQuery variableInstanceQuery()
variableInstanceQuery in class AbstractProcessAssert<TaskAssert,org.camunda.bpm.engine.task.Task>protected org.camunda.bpm.engine.history.HistoricActivityInstanceQuery historicActivityInstanceQuery()
historicActivityInstanceQuery in class AbstractProcessAssert<TaskAssert,org.camunda.bpm.engine.task.Task>protected org.camunda.bpm.engine.history.HistoricDetailQuery historicDetailQuery()
historicDetailQuery in class AbstractProcessAssert<TaskAssert,org.camunda.bpm.engine.task.Task>protected org.camunda.bpm.engine.history.HistoricProcessInstanceQuery historicProcessInstanceQuery()
historicProcessInstanceQuery in class AbstractProcessAssert<TaskAssert,org.camunda.bpm.engine.task.Task>protected org.camunda.bpm.engine.history.HistoricTaskInstanceQuery historicTaskInstanceQuery()
historicTaskInstanceQuery in class AbstractProcessAssert<TaskAssert,org.camunda.bpm.engine.task.Task>protected org.camunda.bpm.engine.history.HistoricVariableInstanceQuery historicVariableInstanceQuery()
historicVariableInstanceQuery in class AbstractProcessAssert<TaskAssert,org.camunda.bpm.engine.task.Task>protected org.camunda.bpm.engine.repository.ProcessDefinitionQuery processDefinitionQuery()
processDefinitionQuery in class AbstractProcessAssert<TaskAssert,org.camunda.bpm.engine.task.Task>
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||