Loading...
Searching...
No Matches
getapprovals.test.sas
Go to the documentation of this file.
1/**
2 @file
3 @brief testing gethistory service
4
5 <h4> SAS Macros </h4>
6 @li mx_execute.sas
7 @li mp_assertdsobs.sas
8
9**/
10
11%let _program=&appLoc/services/approvers/getapprovals;
12
13%mx_execute(&_program,
14 viyacontext=&defaultcontext,
15 outlib=webout
16)
17
18
19data fromsas;
20 set webout.fromsas;
21run;
22
23%mp_assertdsobs(work.fromsas,
24 desc=Fromsas table returned,
25 test=HASOBS,
26 outds=work.test_results
27)