enhancement #IBQCWB FlowExecutor 入口支持执行调用 EL 表达式

This commit is contained in:
luoyi
2025-06-11 19:36:43 +08:00
parent 1a2410afaa
commit 0da24f4b06
2 changed files with 507 additions and 448 deletions

View File

@@ -61,4 +61,11 @@ public class BaseELSpringbootTest extends BaseTest {
Assertions.assertTrue(response.isSuccess());
}
// 入参执行 EL 表达式
@Test
public void testBase6() throws Exception {
LiteflowResponse response = flowExecutor.execute2RespWithEL("THEN(a,b,c)");
Assertions.assertTrue(response.isSuccess());
}
}