?>Array ( [id] => 25 )
Scénario de test & Cas d'usage
No specific data table is needed. The test setup involves ensuring a specific action set is loaded to simulate a real user session.
| 1 | /* No data creation needed. We will load an action set to ensure it appears in the results. */ |
| 1 | PROC CAS; |
| 2 | loadactionset 'decisionTree'; |
| 3 | RUN; |
| 4 | QUIT; |
| 1 | PROC CAS; |
| 2 | BUILTINS.actionSetInfo RESULT=r; |
| 3 | PRINT r.ActionSetInfo; |
| 4 | RUN; |
| 5 | QUIT; |
The output table should list all action sets currently loaded in the session, including the 'builtins' action set and the 'decisionTree' action set that was explicitly loaded in step 1. This confirms the user can proceed with their analysis.