增加测试用例

This commit is contained in:
bryan31
2022-02-23 18:25:11 +08:00
parent 4a5f436716
commit 2f41623769
5 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
Integer a=3
Integer b=2
slot.setData("s1",a*b)

View File

@@ -0,0 +1,6 @@
Integer count = slot.getData("count")
if(count > 100){
return "a"
}else{
return "b"
}

View File

@@ -0,0 +1,3 @@
a=3;
b=2;
slot.setData("s1",a*b);

View File

@@ -0,0 +1,6 @@
count = slot.getData("count");
if(count > 100){
return "a";
}else{
return "b";
}

View File

@@ -0,0 +1,4 @@
package com.yomahub.liteflow.test.asyncNode.exception;
public class TestException extends Exception{
}