feature #I6NGM3 LiteFlow支持多种不同语言脚本混合调用的特性

This commit is contained in:
everywhere.z
2023-03-15 19:11:26 +08:00
parent 94c55b34f0
commit 36526c1903
36 changed files with 411 additions and 60 deletions

View File

@@ -32,7 +32,6 @@ public class LiteflowMonitorFileTest extends BaseTest {
String content = FileUtil.readUtf8String(absolutePath);
String newContent = content.replace("THEN(a, b, c);", "THEN(a, c, b);");
FileUtil.writeString(newContent, new File(absolutePath), CharsetUtil.CHARSET_UTF_8);
Thread.sleep(1000L);
LiteflowResponse response = flowExecutor.execute2Resp("chain1", "arg");
Assert.assertEquals("a==>c==>b", response.getExecuteStepStr());
}