Beispiel #1
0
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @Test public void disabledDmn()
        public virtual void disabledDmn()
        {
            processEngineImpl = createProcessEngineImpl(false);

            // simulate manual schema creation by user
            TestHelper.createSchema(processEngineImpl.ProcessEngineConfiguration);

            // let the engine do their schema operations thing
            processEngineImpl.ProcessEngineConfiguration.CommandExecutorSchemaOperations.execute(new SchemaOperationsProcessEngineBuild());
        }
Beispiel #2
0
        // make sure schema is dropped
//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes:
//ORIGINAL LINE: @After public void cleanup()
        public virtual void cleanup()
        {
            TestHelper.dropSchema(processEngineImpl.ProcessEngineConfiguration);
            processEngineImpl.close();
            processEngineImpl = null;
        }