85 lines
1.7 KiB
YAML
85 lines
1.7 KiB
YAML
load1:
|
|
-
|
|
Title: "Obtain the swimlane element data"
|
|
Function: "loadTest"
|
|
Input:
|
|
SWI_UID: "1"
|
|
input:
|
|
Type: "array"
|
|
load2:
|
|
-
|
|
Title: "Obtain the swimlane element data (not existent)"
|
|
Function: "loadTest"
|
|
Input:
|
|
SWI_UID: "111111111111"
|
|
input:
|
|
Type: "Exception"
|
|
create1:
|
|
-
|
|
Title: "Create the swimlane element data"
|
|
Function: "createTest"
|
|
Input:
|
|
SWI_UID: "2"
|
|
PRO_UID: "2"
|
|
SWI_TYPE: "LINE"
|
|
SWI_X: "100"
|
|
SWI_Y: "0"
|
|
SWI_TEXT: "SWI_TEXT"
|
|
input:
|
|
Type: "integer"
|
|
create2:
|
|
-
|
|
Title: "Create the swimlane element data (whit incomplete data)"
|
|
Function: "createTest"
|
|
Input:
|
|
SWI_UID: ""
|
|
PRO_UID: "2"
|
|
SWI_TYPE: "LINE"
|
|
SWI_X: "100"
|
|
SWI_Y: "0"
|
|
SWI_TEXT: "SWI_TEXT"
|
|
input:
|
|
Type: "Exception"
|
|
update1:
|
|
-
|
|
Title: "Update the swimlane element data"
|
|
Function: "updateTest"
|
|
Input:
|
|
SWI_UID: "1"
|
|
PRO_UID: "2"
|
|
SWI_TYPE: "LINE"
|
|
SWI_X: "100"
|
|
SWI_Y: "0"
|
|
SWI_TEXT: "SWI_TEXT1"
|
|
input:
|
|
Type: "integer"
|
|
update2:
|
|
-
|
|
Title: "Update the swimlane element data (not existent)"
|
|
Function: "updateTest"
|
|
Input:
|
|
SWI_UID: "111111111111"
|
|
PRO_UID: "2"
|
|
SWI_TYPE: "LINE"
|
|
SWI_X: "100"
|
|
SWI_Y: "0"
|
|
SWI_TEXT: "SWI_TEXT1"
|
|
input:
|
|
Type: "Exception"
|
|
remove1:
|
|
-
|
|
Title: "Remove the swimlane element data"
|
|
Function: "removeTest"
|
|
Input:
|
|
SWI_UID: "2"
|
|
input:
|
|
Type: "NULL"
|
|
remove2:
|
|
-
|
|
Title: "Remove the swimlane element data (not existent)"
|
|
Function: "removeTest"
|
|
Input:
|
|
SWI_UID: "111111111111"
|
|
input:
|
|
Type: "Exception"
|