SASUnit Examples  Version 1.5.0
_termscenario.sas
Go to the documentation of this file.
1 
20 %MACRO _termScenario();
21 
22  %GLOBAL g_inTestcase;
23  %IF &g_inTestcase EQ 1 %THEN %DO;
24  %endTestcall;
25  %endTestcase;
26  %END;
27  %IF &g_inTestcase EQ 2 %THEN %DO;
28  %endTestcase;
29  %END;
30  %LET g_inTestcase=1;
31 
32 %MEND _termScenario;