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 mp_assertdsobs.sas
7 
8 **/
9 
10 %let _program=&appLoc/services/approvers/getapprovals;
11 
12 %mp_testservice(&_program,
13  viyacontext=&defaultcontext,
14  outlib=webout
15 )
16 
17 
18 data fromsas;
19  set webout.fromsas;
20 run;
21 
22 %mp_assertdsobs(work.fromsas,
23  desc=Fromsas table returned,
24  test=HASOBS,
25  outds=work.test_results
26 )