feature #I8MW6Q 完善测试用例

This commit is contained in:
Dale Lee
2024-01-15 21:46:36 +08:00
parent b858dacdcc
commit 924768705c
24 changed files with 1003 additions and 39 deletions

View File

@@ -0,0 +1 @@
liteflow.rule-source=remove/flow.xml

View File

@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<flow>
<nodes>
<node id="s1" name="普通脚本1" type="script" language="python">
<![CDATA[
a=1
b=2
c=3
defaultContext.setData("s1",a+b+c)
]]>
</node>
<node id="s2" name="普通脚本2" type="script" language="python">
<![CDATA[
a=1
b=2
c=3
defaultContext.setData("s2",a*b+c)
]]>
</node>
</nodes>
<chain name="chain1">
THEN(s1);
</chain>
<chain name="chain2">
THEN(s2);
</chain>
</flow>