/**
@file
@brief init file for tests
SAS Macros
@li mp_init.sas
@li mv_webout.sas
**/
/* location in metadata or SAS Drive for temporary files */
%let mcTestAppLoc=/Public/temp/macrocore;
/* set defaults */
%mp_init()
%global _debug;
%macro loglevel();
%if "&_debug"="2477" or "&_debug"="fields,log,trace" %then %do;
%put debug mode activated;
options mprint;
%end;
%mend loglevel;
%loglevel()
%put Initialised &_program;
%put _all_;