示例#1
0
        public virtual void testQueryRemoveExecutionVariableOperation()
        {
            // given
            process = runtimeService.startProcessInstanceByKey("oneTaskProcess");

            // when
            runtimeService.removeVariable(process.Id, "testVariable1");

            // then
            verifyVariableOperationAsserts(org.camunda.bpm.engine.history.UserOperationLogEntry_Fields.OPERATION_TYPE_REMOVE_VARIABLE);
        }