use of io.camunda.zeebe.client.api.command.CompleteJobCommandStep1 in project zeebe by camunda.
the class CompleteJobTest method shouldNotHaveNullResponse.
@Test
public void shouldNotHaveNullResponse() {
// given
final CompleteJobCommandStep1 command = client.newCompleteCommand(12);
// when
final CompleteJobResponse response = command.send().join();
// then
assertThat(response).isNotNull();
}
use of io.camunda.zeebe.client.api.command.CompleteJobCommandStep1 in project zeebe by zeebe-io.
the class CompleteJobTest method shouldNotHaveNullResponse.
@Test
public void shouldNotHaveNullResponse() {
// given
final CompleteJobCommandStep1 command = client.newCompleteCommand(12);
// when
final CompleteJobResponse response = command.send().join();
// then
assertThat(response).isNotNull();
}
use of io.camunda.zeebe.client.api.command.CompleteJobCommandStep1 in project zeebe by camunda-cloud.
the class CompleteJobTest method shouldNotHaveNullResponse.
@Test
public void shouldNotHaveNullResponse() {
// given
final CompleteJobCommandStep1 command = client.newCompleteCommand(12);
// when
final CompleteJobResponse response = command.send().join();
// then
assertThat(response).isNotNull();
}
Aggregations