Versions Compared

Key

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

...

Code Block
#Test Set Status Percentage + total of testes per status
Todo: ${Test Set Status.TODO} % (${Test Set Status.TODO.Count})
Fail: ${Test Set Status.FAIL} % (${Test Set Status.FAIL.Count})
Pass: ${Test Set Status.PASS} % (${Test Set Status.PASS.Count})
Executing: ${Test Set Status.EXECUTING} % (${Test Set Status.EXECUTING.Count}) 
Aborted: ${Test Set Status.ABORTED} % (${Test Set Status.ABORTED.Count})

You can also use the translated name of Test Set Status to get the same information.

LanguageTranslated Name
ESEstado del Grupo de Tests
DEAllgemeiner Ausführungsstatus
FRÉtat d'Exécution Global

See the example:

Code Block
titleExpand to see the examples on sample code
collapsetrue
#Test Set Status Percentage + total of testes per status
Todo: ${Test Set Status.TODO} % (${Test Set Status.TODO.Count})
Fail: ${Test Set Status.FAIL} % (${Test Set Status.FAIL.Count})
Pass: ${Test Set Status.PASS} % (${Test Set Status.PASS.Count})
Executing: ${Test Set Status.EXECUTING} % (${Test Set Status.EXECUTING.Count}) 
Aborted: ${Test Set Status.ABORTED} % (${Test Set Status.ABORTED.Count})

Iterating over Tests

As it is not known in advance how many Tests exist in a Test Set, there is a notation that allows iterating a section over all the Tests of a Test Set. The notation is:

...