SASUnit Examples  Version 1.2
_sasunit_termscenario.sas
Go to the documentation of this file.
1 
19 %MACRO _sasunit_termScenario(
20 );
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 _sasunit_termScenario;