示例#1
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Test public void testDeployProcessWithoutIsExecutableAttribute()
        public virtual void testDeployProcessWithoutIsExecutableAttribute()
        {
            RuntimeService  runtimeService = engineRule.RuntimeService;
            ProcessInstance procInstance   = runtimeService.startProcessInstanceByKey("processWithoutIsExecutableAttribute");

            Assert.assertNotNull(procInstance);
        }
示例#2
0
 public ProcessEngineAwareStep(ProcessEngine processEngine)
 {
     this.processEngine = processEngine;
     runtimeService     = processEngine.RuntimeService;
     taskService        = processEngine.TaskService;
     repositoryService  = processEngine.RepositoryService;
 }
示例#3
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Before public void setup()
        public virtual void setup()
        {
            engine            = PerfTestProcessEngine.Instance;
            taskService       = engine.TaskService;
            historyService    = engine.HistoryService;
            runtimeService    = engine.RuntimeService;
            repositoryService = engine.RepositoryService;
        }
示例#4
0
 public TestFixture(ProcessEngine processEngine)
 {
     this.processEngine = processEngine;
     repositoryService  = processEngine.RepositoryService;
     runtimeService     = processEngine.RuntimeService;
     managementService  = processEngine.ManagementService;
     taskService        = processEngine.TaskService;
 }
示例#5
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Before public void setup()
        public virtual void setup()
        {
            engine            = processEngineRule.ProcessEngine;
            taskService       = engine.TaskService;
            historyService    = engine.HistoryService;
            runtimeService    = engine.RuntimeService;
            repositoryService = engine.RepositoryService;
        }