!133 fix(supervision): 修正 InspectCloseoutFlowTest 角色参数匹配实际调用

* fix(supervision): 修正 InspectCloseoutFlowTest 角色参数匹配实际调用
* test(fixcontact): 新增流程表达式/监听器/Service 单测,fixcontact 可测代码接近全覆盖
* refactor(fixcontact): 提炼上两级解析与部门ID清洗纯函数,监听器依赖注入化
* chore(bpm): 安装 JaCoCo 覆盖率插件并修复构建链(补齐 base-core 依赖、排除环境依赖测试)
This commit is contained in:
wsm
2026-08-18 08:04:26 +00:00
parent aea4a0e312
commit 4e9a57651b
17 changed files with 1414 additions and 34 deletions
+16
View File
@@ -30,5 +30,21 @@
<artifactId>jeecg-system-biz</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<!-- flowregression 是 E2E 回归测试(HTTP 驱动真实后端 localhost:8080),
后端未启动时必然失败,从全量 mvn test 排除;需要时启动后端或 -Dtest=*RegressionTest 单独跑 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/flowregression/**</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>