Macros for SAS Application Developers
https://github.com/sasjs/core
mv_getfoldermembers.test.sas
Go to the documentation of this file.
1 /**
2  @file
3  @brief Testing mv_getfoldermembers macro
4  @details Testing is performed by ensuring that the tests/macros folder
5  contains more than 20 results (which also means the default was increased)
6 
7  <h4> SAS Macros </h4>
8  @li mf_getapploc.sas
9  @li mp_assertdsobs.sas
10  @li mv_getfoldermembers.sas
11 
12 **/
13 options mprint;
14 
15 %mv_getfoldermembers(
16  root=%mf_getapploc()/tests/macros,
17  outds=work.results
18 )
19 
20 %mp_assertdsobs(work.results,
21  desc=%str(Ensuring over 20 results found in %mf_getapploc()/tests/macros),
22  test=ATLEAST 21,
23  outds=work.test_results
24 )