SASUnit Examples  Version 1.2.1
report_de.sas
Go to the documentation of this file.
1 
20 OPTIONS
21  MPRINT MAUTOSOURCE
22  SASAUTOS=(SASAUTOS "c:/projects/sasunit/saspgm/sasunit") /* SASUnit macro library */
23 ;
24 
25 /* open test repository */
26 %initSASUnit(
27  i_root = c:/projects/sasunit /* root path for convenience, following paths can be relative */
28  ,io_target = example/doc/sasunit /* input test repository */
29 )
30 
31 /* create report - always force complete creation */
32 %reportSASUnit(i_language=DE, o_force=1, o_output=example\doc\sasunit.de)
33 
34