Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Field: TestAssignedTo

Description

TestAssignedTo is the user assigned to the test/script which is the parent of a test script assignment / automated test assignment.

Examples

To find all Script Assignments where the Script is assigned to multiple users:

Code Block
languagenone
TestAssignedTo IN [username1, username2, username3]

To find all Script Assignments where the Script is assigned to members of a group ( e.g. Testers):

Code Block
languagenone
EntityType = ScriptAssignment AND TestAssignedTo IN [MembersOf('Testers')]

Which can also be written as:

Code Block
languagenone
EntityType = ScriptAssignment AND TestAssignedTo = MembersOf('Testers')

Find all script assignments and automated tests with un-assigned tests/scripts (where assigned to is empty on the script/test):

Code Block
languagenone
EntityType IN [ScriptAssignment,AutomatedTestAssignment] AND TestAssignedTo IS Empty

Supported Operators

=, IN, !=, NOT IN, IS, IS NOT

Supported Indexes

Entity

Supported Types

  • AutomatedTestAssignment
  • TestScriptAssignment

Supported Features

FeatureSupported?
AggregationYes (String)
SortableYes
Sub-selectsNo