File tree Expand file tree Collapse file tree
flowable-app-rest/src/test/resources
flowable-cmmn-engine/src/test/java/org/flowable/cmmn/test/runtime Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11spring.datasource.url =jdbc:h2:mem:flowable; DB_CLOSE_DELAY=1000
22management.health.ldap.enabled =false
3+
4+ spring.datasource.hikari.minimumIdle =0
5+ spring.datasource.hikari.maximumPoolSize =10
Original file line number Diff line number Diff line change 1414
1515import static org .assertj .core .api .Assertions .assertThat ;
1616import static org .assertj .core .api .Assertions .assertThatThrownBy ;
17+ import static org .assertj .core .api .Assumptions .assumeThat ;
1718
1819import java .util .ArrayList ;
1920import java .util .Date ;
3637import org .flowable .cmmn .engine .test .FlowableCmmnTestCase ;
3738import org .flowable .cmmn .engine .test .impl .CmmnHistoryTestHelper ;
3839import org .flowable .common .engine .api .FlowableIllegalArgumentException ;
40+ import org .flowable .common .engine .impl .AbstractEngineConfiguration ;
3941import org .flowable .common .engine .impl .history .HistoryLevel ;
4042import org .flowable .job .api .Job ;
4143import org .flowable .task .api .Task ;
@@ -1065,6 +1067,7 @@ public void testStageBusinessStatus() {
10651067 "org/flowable/cmmn/test/runtime/StageTest.sleepCase.cmmn"
10661068 })
10671069 public void testStageWithAsyncNonExclusiveChildren () {
1070+ assumeThat (cmmnEngineConfiguration .getDatabaseType ()).isNotEqualTo (AbstractEngineConfiguration .DATABASE_TYPE_MSSQL );
10681071 ArrayNode elementsVar = cmmnEngineConfiguration .getObjectMapper ()
10691072 .createArrayNode ();
10701073 int numberOfJobs = 2 ;
You can’t perform that action at this time.
0 commit comments