Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleExpand to see the examples on sample code
collapsetrue
#{for tests}
	Content and Test Mappings.	Example: ${TestExecutionsTests[n].Key}
#{end}
 
or
 
#{for j=TestsCount}
	Content and Test Mappings.	Example: ${TestExecutionsTests[j].Summary}
#{end}

n is the index of Test, starting from 0. The field TestsCount was created in order to give the total number of Tests.

...

Code Block
titleExpand to see the examples on sample code
collapsetrue
#{for testExecutions}
	Content and Test Mappings.	Example: ${TestsTestExecutions[n].Key}
#{end}
 
or
 
#{for j=TestExecutionsCount}
	Content and Test Mappings.	Example: ${TestsTestExecutions[j].Summary}
#{end}

n is the index of Test, starting from 0. The field TestExecutionsCount was created in order to give the total number of Tests.

...