06-02-2008 05:57 AM
06-02-2008 06:39 AM
06-02-2008 06:48 AM
Does each iteration have different limits?
06-03-2008 01:50 AM
Hi,
How do you organise your limit file.
Do you have a different Start/End Marker for each of your iterations so that you have the correctly named step(s) between the markers?
You could try loading an array of limits into a local array(s) from your Limit File then index through the array as the datasource for your limits. Remember its a PropertyLoader, so its not limited to just limits. That way you only read it once and you are not tied to the Step name.
Regards
Ray Farmer
06-03-2008 05:35 AM
How do you organise your limit file.
Do you have a different Start/End Marker for each of your iterations so that you have the correctly named step(s) between the markers?
You could try loading an array of limits into a local array(s) from your Limit File then index through the array as the datasource for your limits. Remember its a PropertyLoader, so its not limited to just limits. That way you only read it once and you are not tied to the Step name.
06-03-2008 06:26 AM
08-15-2008 09:52 AM
We set up an arrays of data containeders to do this.
Each test is an element in the array.
The array size can even change, changing the number of times the loop is run.
The Property loader first read a variable for the size of the array from the Property file.
Then the size of the array is set in TestStand.
Then load each item in the array into an array in TestStand.
Then the flow control "For Each" is use to loop though the array for each element in the array.
The data type of each element of the array contains the limits, switch chanels and every the name of the test step to rename it for the report file.
Just one way to do it.
Omar