Hi Klaus, thanks for your answer. So, the job can be found; Yes, the examples work in linux and windows The SASUnit version is the same 1.7 and the SAS Base 9.4 When in windows, the SASUnit run jobExample.sas , in linux they give a error that not Does not recognize a macro Regards
Hi Klaus, thanks for your answer. So, the job can be found; Yes, the examples work in linux and windows The version is the same 1.7 When in windows, the SASUnit run jobExample.sas , in linux they give a error that not Does not recognize a macro Regards
i have test this example in windows ( note: the jobExample.sas is a DIS Job and the output is sasunit_table) /*-- Creation of base datasets -----------------------------------------*/ %initTestcase(i_object=jobExample.sas, i_desc=Check if Table is create) %jobExample %endTestCall() %assertTableExists (i_libref=ditstsrc ,i_memname=sasunit_table ,i_desc =Table was successfuly created? ) %assertRecordCount (i_libref =ditstsrc ,i_memname =sasunit_table ,i_recordsExp=490 ,i_desc =Does table contain all...
i have test this example in windows ( note: the jobExample.sas is a DIS Job and the output is sasunit_table) /*-- Creation of base datasets -----------------------------------------*/ %initTestcase(i_object=jobExample.sas, i_desc=Check if Table is create) jobExample %endTestCall() %assertTableExists (i_libref=ditstsrc ,i_memname=sasunit_table ,i_desc =Table was successfuly created? ) %assertRecordCount (i_libref =ditstsrc ,i_memname =sasunit_table ,i_recordsExp=490 ,i_desc =Does table contain all...
I saw now, that SASunit creates a junit.xml file and i can use junit parser to integrate with Bamboo. Thanks Klaus. Regards, Gustavo
Thank you very much. Good analysis and excellent response. I'll look into how Bamboo determines the number of tests and failures. Thanks Regards Gustavo
Thank you very much. Good analysis and excellent response. I'll look into how Bamboo determines the number of tests and failures. Tanks Regards Gustavo
Hello, I want to use SASUnit to test DIS job. However I want to integrate with Bamboo, in order to automate the tests. Has anyone done anything like this? I know there's an add-on for Jenkins, but in this project I'm not going to use Jenkins. Thank you very much. Good job