Hi,
I have added some changes in the camunda engine source code to handle additional form field types. To test this change I have modified BpmnDeploymentTest.java to add the following function:
public void testDeployment() {
String bpmnResourceName = "org/camunda/bpm/engine/test/bpmn/deployment/BpmnDeploymentTest.testMultiLine2.bpmn20.xml";
repositoryService.createDeployment().enableDuplicateFiltering().addClasspathResource(bpmnResourceName).name("testingdepw").deploy();
String deploymentId = repositoryService.createDeploymentQuery().singleResult().getId();
}
But when I run this as a Junit test I get an error “java.lang.AssertionError: Deployment cache is not clean:”
I have attached the stack trace.
trace.txt (1.5 KB)
Could you tell me why this happens?