mirror of
https://gitee.com/dromara/liteFlow.git
synced 2026-05-14 20:22:07 +08:00
增加测试用例
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
Integer a=3
|
||||
Integer b=2
|
||||
slot.setData("s1",a*b)
|
||||
@@ -0,0 +1,6 @@
|
||||
Integer count = slot.getData("count")
|
||||
if(count > 100){
|
||||
return "a"
|
||||
}else{
|
||||
return "b"
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
a=3;
|
||||
b=2;
|
||||
slot.setData("s1",a*b);
|
||||
@@ -0,0 +1,6 @@
|
||||
count = slot.getData("count");
|
||||
if(count > 100){
|
||||
return "a";
|
||||
}else{
|
||||
return "b";
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.yomahub.liteflow.test.asyncNode.exception;
|
||||
|
||||
public class TestException extends Exception{
|
||||
}
|
||||
Reference in New Issue
Block a user