startupservice.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  @li mp_testservice.sas
8 
9 **/
10 
11 %let _program=&appLoc/services/public/startupservice;
12 
13 %mp_testservice(&_program,
14  viyacontext=&defaultcontext,
15  outlib=webout
16 )
17 
18 
19 data work.globvars;
20  set webout.globvars;
21  putlog (_all_)(=);
22 run;
23 
24 data work.xlmaps;
25  set webout.xlmaps;
26  putlog (_all_)(=);
27 run;
28 
29 %mp_assertdsobs(work.globvars,
30  desc=Fromsas table returned,
31  test=HASOBS,
32  outds=work.test_results
33 )
34 
35 %mp_assertdsobs(work.xlmaps,
36  desc=xlmaps table returned,
37  test=HASOBS,
38  outds=work.test_results
39 )