Search in JQL
Below, we provide specifications regarding using a search in JQL function with custom fields in ATM.
Caution
For the custom fields:
- ATM Test Plans
- ATM Test Cases
The search in issue navigator shows the work item ID of these elements. To search the work item appearing in either of the custom fields, type in:
issue = [issueID]
ATM Environments
Search for work items that have been assigned a specific testing environment.
| Syntax | ”ATM Test Environment” | |
|---|---|---|
| Supported operators | ”=”, ”=!”, “IS”, “IS NOT”, “IN”, “NOT IN” |
- Example: Search for work items that are assigned to a staging environment.
"ATM Environments" = stagingATM Repository
Search for work items that are located in a specific folder.
| Syntax | ”ATM Repository” | |
|---|---|---|
| Supported operators | ”=”, ”=!”, “IS”, “IS NOT”, “IN”, “NOT IN” |
- Example: Search for Test Cases that have been located in the “UI” folder.
"ATM Repository" = /UIATM Preconditions
Search for work items, in which the Preconditions custom field is filled.
| Syntax | ”ATM Preconditions” | |
|---|---|---|
| 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 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" = ManualATM 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 IN (issueID)ATM TE Status
Search for Test Executions that have been assigned a specific status.
| Syntax | ”ATM TE Status” | |
|---|---|---|
| Supported operators | ”=”, ”=!”, “IS”, “IS NOT”, “IN”, “NOT IN” |
- Example: Search for Test Executions that haven’t been assigned a “In progress” status.
"ATM TE Status" =! "In progress"ATM TE Progress
Search for Test Execution items that have a certain percentage in the progress bar (e.g. 60% pass).
| Syntax | ”ATM 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%.
"ATM TE Progress.progress" >= 50