1
0

调整测试代码的组织,保持主代码整洁

This commit is contained in:
2025-01-03 09:37:22 +08:00
parent 071beee794
commit 07ee530b79
13 changed files with 103 additions and 37 deletions

View File

@@ -1,4 +1,4 @@
package com.lanyuanxiaoyao.flowable.core;
package com.lanyuanxiaoyao.flowable.jpa;
import com.lanyuanxiaoyao.flowable.core.manager.FlowableManager;
import com.lanyuanxiaoyao.flowable.core.model.FlowableAction;

View File

@@ -1,6 +1,5 @@
package com.lanyuanxiaoyao.flowable.jpa;
import com.lanyuanxiaoyao.flowable.core.SimpleAutoAction;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;

View File

@@ -1,7 +1,7 @@
package com.lanyuanxiaoyao.flowable.jpa;
import com.lanyuanxiaoyao.flowable.core.manager.FlowableManager;
import com.lanyuanxiaoyao.flowable.core.test.TestFlowableManager;
import com.lanyuanxiaoyao.flowable.test.TestFlowableManager;
import javax.annotation.Resource;
import org.springframework.boot.test.context.SpringBootTest;
@@ -18,4 +18,9 @@ public class TestSpringFlowableManager extends TestFlowableManager {
protected FlowableManager flowableManager() {
return flowableManager;
}
@Override
protected Class<?> getAutomaticNodeClass() {
return SimpleAutoAction.class;
}
}