修改测试用例

This commit is contained in:
everywhere.z
2022-06-15 15:35:07 +08:00
parent 5d2ee323dd
commit 5803bb96b7

View File

@@ -43,4 +43,15 @@ public class ACmp{
public void onAcmpSuccess(NodeComponent bindCmp){
System.out.println("Acmp success");
}
@LiteflowMethod(LiteFlowMethodEnum.ON_ERROR)
public void onAcmpError(NodeComponent bindCmp){
System.out.println("Acmp error");
}
@LiteflowMethod(LiteFlowMethodEnum.IS_END)
public boolean isAcmpEnd(NodeComponent bindCmp) {
System.out.println("Acmp end config");
return false;
}
}