Macros for SAS Application Developers
https://github.com/sasjs/core
Loading...
Searching...
No Matches
ms_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 ms_createwebservice.sas
9
10**/
11
12%let path=&mcTestAppLoc/ms_createwebservice;
13%let name=myservice;
14%let fref=%mf_getuniquefileref();
15
16data _null_;
17 file &fref lrecl=3000;
18 put '%put hello world;';
19run;
20
21%mp_assertscope(SNAPSHOT)
22%ms_createwebservice(path=&path,name=&name,code=&fref,mdebug=&sasjs_mdebug)
23%mp_assertscope(COMPARE)
24
25
26
27
28