?>Array ( [lang] => en [id] => 39 )
Scénario de test & Cas d'usage
No data preparation is needed for this scenario. The test relies on the absence of the specified action set.
| 1 | /* No action set is defined for this test case */ |
| 1 | PROC CAS; |
| 2 | ACTION BUILTINS.actionSetToTable / |
| 3 | actionSet='nonExistentActionSet' |
| 4 | casOut={name='SHOULD_NOT_BE_CREATED', caslib='casuser'}; |
| 5 | RUN; |
| 6 | QUIT; |
| 1 | PROC CAS; |
| 2 | ACTION TABLE.tableInfo / |
| 3 | name='SHOULD_NOT_BE_CREATED'; |
| 4 | RUN; |
| 5 | QUIT; |
The `actionSetToTable` action in step 1 must fail. The CAS log should display an error message indicating that the action set 'nonExistentActionSet' was not found. Consequently, the `table.tableInfo` action in step 2 will also fail, confirming that the output table 'SHOULD_NOT_BE_CREATED' was never generated.