Hi,
I recently popped into STAF -project ( which uses XML -files for sequencing software test cases. Actually it's like a macro language implemented with XML and in XML there is function calls and variable declarations (e.g. variable = 1 etc.).
I was wondering if someone knows if there is something similar system for e.g. Perl.
Or if you have suggestions how this kind of "macro language" could be sequenced through Perl, it would be nice.
E.g. one SW test case would be run like this
<TEST name="prg_loader">
<CASE id="1" />
<LOOP times="5">
<CASE id="3" />
<CASE id="4" />
</LOOP>
</TEST>
I was wondering which would be the best way to run these kind of loops in "macro language"
I recently popped into STAF -project ( which uses XML -files for sequencing software test cases. Actually it's like a macro language implemented with XML and in XML there is function calls and variable declarations (e.g. variable = 1 etc.).
I was wondering if someone knows if there is something similar system for e.g. Perl.
Or if you have suggestions how this kind of "macro language" could be sequenced through Perl, it would be nice.
E.g. one SW test case would be run like this
<TEST name="prg_loader">
<CASE id="1" />
<LOOP times="5">
<CASE id="3" />
<CASE id="4" />
</LOOP>
</TEST>
I was wondering which would be the best way to run these kind of loops in "macro language"