Published on :
Macro CREATION_INTERNE

Global Test Execution

This code is also available in: Deutsch Español Français
The code starts by including the autoexec.sas© file located in the SAS© workspace (_SASWS_). Then, it calls the %test macro with the _all_ parameter to execute all available tests (probable reference to a 'coco' test suite).
Data Analysis

Type : CREATION_INTERNE


The script does not directly manipulate external data; it acts as a test orchestrator through macro calls.

1 Code Block
INCLUDE
Explanation :
Inclusion of the autoexec.sas configuration and initialization file using the _SASWS_ environment variable.
Copied!
1%inc "&_SASWS_./autoexec.sas";
2 Code Block
MACRO CALL
Explanation :
Call to the custom %test macro with the _all_ argument to trigger the execution of all tests.
Copied!
1/*Test all coco codes*/
2%test(_all_);
This material is provided "as is" by We Are Cas. There are no warranties, expressed or implied, as to merchantability or fitness for a particular purpose regarding the materials or code contained herein. We Are Cas is not responsible for errors in this material as it now exists or will exist, nor does We Are Cas provide technical support for it.