Macros for SAS Application Developers
https://github.com/sasjs/core
mp_createwebservice.test.sas
Go to the documentation of this file.
1 /**
2  @file
3  @brief Testing ms_createwebservice.sas macro
4 
5  <h4> SAS Macros </h4>
6  @li mf_getuniquefileref.sas
7  @li mp_assertscope.sas
8  @li mp_createwebservice.sas
9 
10 **/
11 
12 %let path=&mcTestAppLoc/mp_createwebservice;
13 %let name=myservice;
14 %let fref=%mf_getuniquefileref();
15 
16 data _null_;
17  file &fref lrecl=3000;
18  put '%put hello world;';
19 run;
20 
21 %mp_assertscope(SNAPSHOT)
22 %mp_createwebservice(path=&path,name=&name,code=&fref,mdebug=&sasjs_mdebug)
23 %mp_assertscope(COMPARE)
24 
25 
26 
27 
28