优化测试用例

This commit is contained in:
everywhere.z 2022-11-07 12:55:57 +08:00
parent 8b3971087e
commit b6da5a278d
3 changed files with 4 additions and 5 deletions

View File

@ -15,6 +15,7 @@ public class ACmp extends NodeComponent {
@Override
public void process() {
System.out.println(this.getCmpData(String.class));
System.out.println("ACmp executed!");
}
}

View File

@ -1,4 +0,0 @@
/**
* 测试注释
*/
package com.yomahub.liteflow.test.comments;

View File

@ -1,10 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<flow>
<chain name="chain1">
sql = "select * from member t
where t.id=10001";
cmpData = '{"name":"jack","age":27,"birth":"1995-10-01"}';
THEN(
a,
a.data(sql),
b.data(cmpData),
c
);