Macros for SAS Application Developers
https://github.com/sasjs/core
Toggle main menu visibility
Home
File List
▼
@sasjs/core
Macro Core
▼
File List
►
base
►
ddl
►
fcmp
►
lua
►
meta
►
metax
►
server
▼
tests
►
base
►
ddlonly
►
sas9only
▼
serveronly
mfs_httpheader.test.sas
ms_adduser2group.test.sas
ms_createfile.test.sas
ms_creategroup.test.sas
ms_createuser.test.sas
ms_createwebservice.test.sas
ms_deletefile.test.sas
ms_getfile.test.sas
ms_getgroups.test.sas
ms_getusers.test.sas
ms_runstp.test.sas
ms_testservice.test.sas
ms_triggerstp.test.sas
ms_webout.test.sas
►
viyaonly
►
x-platform
►
viya
►
xplatform
•
All
Files
Pages
Loading...
Searching...
No Matches
ms_createfile.test.sas
Go to the documentation of this file.
1
/**
2
@file
3
@brief Testing ms_createfile.sas macro
4
5
<h4> SAS Macros </h4>
6
@li ms_createfile.sas
7
@li mp_assert.sas
8
@li mp_assertscope.sas
9
10
**/
11
12
13
filename stpcode temp;
14
data _null_;
15
file stpcode;
16
put
'%put hello world;'
;
17
run;
18
19
options mprint;
20
%let fname=%mf_getuniquename();
21
22
%mp_assertscope(SNAPSHOT)
23
%ms_createfile(/sasjs/tests/&fname..sas
24
,inref=stpcode
25
,mdebug=1
26
)
27
%mp_assertscope(COMPARE)
28
29
30
tests
serveronly
ms_createfile.test.sas
Generated by
1.13.2
For more information visit the
Macro Core library
.