Macros for SAS Application Developers
https://github.com/sasjs/core
mddl_dc_difftable.test.sas
Go to the documentation of this file.
1 /**
2  @file
3  @brief Difftable DDL test
4 
5  <h4> SAS Macros </h4>
6  @li mddl_dc_difftable.sas
7  @li mf_existds.sas
8  @li mp_assert.sas
9 
10 **/
11 
12 
13 %mddl_dc_difftable(libds=WORK.DIFFTABLE)
14 
15 %mp_assert(
16  iftrue=(%mf_existds(WORK.DIFFTABLE)=1),
17  desc=Checking table was created,
18  outds=work.test_results
19 )