Search in JQL
Below, we provide specifications regarding using a search in JQL function with custom fields in ATM.


ATM Test Environment
Search for work items that have been assigned a specific testing environment.
| Syntax | ”Test Environment” | |
|---|---|---|
| Supported operators | ”=”, ”=!”, “IS”, “IS NOT”, “IN”, “NOT IN” |
- Example: Search for Test Executions and Test Case Executions that are assigned to a staging environment.
Test Environment = stagingATM Preconditions
Search for work items, in which the Preconditions custom field is filled.
| Syntax | ”Test Environment” | |
|---|---|---|
| Supported operators | " |
- Example: Search for work items, in which the Preconditions custom field is filled.
ATM Preconditions IS NOT EMPTYATM Test Cases
Search for work items such as Test Plans or Test Executions that have been connected to a specific Test Case.
| Syntax | ”ATM Test cases.issues” | |
|---|---|---|
| Supported operators | ”>=”, ”>”, ”<”, “IS”, “IS NOT”, “IN”, “NOT IN” |
- Example: Search for Test Plans that have been assigned to a specific Test Case.
ATM Test Cases.issues IN (issueID)ATM Test Plans
Search for work items such as Test Cases, that have been assigned to a specific Test Plan.
| Syntax | ”ATM Test Plans.issues” | |
|---|---|---|
| Supported operators | ”>=”, ”>”, ”<”, “IS”, “IS NOT”, “IN”, “NOT IN” |
- Example: Search for Test Cases that are not included in a “User login” Test Plan.
ATM Test Plans.issues NOT INATM TE Status
Search for Test Executions that have been assigned a specific status.
| Syntax | ”TE Status” | |
|---|---|---|
| Supported operators | ”=”, ”=!”, “IS”, “IS NOT”, “IN”, “NOT IN” |
- Example: Search for Test Executions that haven’t been assigned a “In progress” status.
TE Status =! In ProgressATM TE Progress
Search for Test Execution items that have a certain percentage in the progress bar (e.g. 60% pass).
| Syntax | ”TE Progress.progress” | |
|---|---|---|
| Supported operators | ”=”, ”=!”, ”<”, ”>”, ”>=”, ”<=”, “IS”, “IS NOT”, “IN”, “NOT IN” |
- Example: Search for Test Executions with a progress that equals or is above 50%.
TE Progress.progress >= 50ATM Test Type
Search for work items that have been assigned a specific Test Type.
Caution
Currently, the ATM Test Type can only be set to Manual. It is automatically set by the app when the first Test Step is added to a Test Case.
| Syntax | ”ATM Test type” | |
|---|---|---|
| Supported operators | ”=”, ”=!”, “IS”, “IS NOT”, “IN”, “NOT IN” |
- Example: Search for testing items with Test Type field defined as Manual.
ATM Test Type = manual