protected void assertProcessDeployed(String processKey, String expectedDeploymentName) {

    ProcessDefinition processDefinition =
        repositoryService
            .createProcessDefinitionQuery()
            .latestVersion()
            .processDefinitionKey(processKey)
            .singleResult();

    DeploymentQuery deploymentQuery =
        repositoryService.createDeploymentQuery().deploymentId(processDefinition.getDeploymentId());

    Assert.assertEquals(expectedDeploymentName, deploymentQuery.singleResult().getName());
  }