Macros for SAS Application Developers
https://github.com/sasjs/core
Loading...
Searching...
No Matches
mf_getfilesize.test.sas
Go to the documentation of this file.
1/**
2 @file
3 @brief Testing mf_getfilesize macro
4
5 <h4> SAS Macros </h4>
6 @li mf_getfilesize.sas
7 @li mp_assert.sas
8 @li mp_assertscope.sas
9
10**/
11
12data test;
13 x=1;
14run;
15
16%mp_assertscope(SNAPSHOT)
17%put %mf_getfilesize(libds=work.test)
18%mp_assertscope(COMPARE)
19
20%mp_assert(
21 iftrue=(&syscc=0),
22 desc=Checking syscc
23)
24
25%put %mf_getfilesize(libds=test);
26
27%mp_assert(
28 iftrue=(&syscc=0),
29 desc=Checking syscc with one level name
30)