mirror of
https://github.com/sasjs/core.git
synced 2025-12-15 16:14:36 +00:00
24 lines
348 B
SAS
24 lines
348 B
SAS
/**
|
|
@file
|
|
@brief Testing mv_createwebservice macro
|
|
|
|
<h4> SAS Macros </h4>
|
|
@li mv_createwebservice.sas
|
|
|
|
**/
|
|
|
|
/**
|
|
* Test Case 1
|
|
* Send special char in a service
|
|
*/
|
|
|
|
filename testref temp;
|
|
data _null_;
|
|
file testref;
|
|
put '01'x;
|
|
run;
|
|
%mv_createwebservice(
|
|
path=&mcTestAppLoc/tests/macros,
|
|
code=testref,
|
|
name=mv_createwebservice
|
|
) |