...
Panel | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Definition Tree - ExportClick on the Export button to open the export menu. The following tables describe the export content in each format depending on issue type and applied filter. Since the XML export provides information that can be used to integrate another application with T4J via its REST API a complete example export file is provided. Plan Tree - Export formatsXML
Excel
Word
|
Panel | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Searching for testsAdvanced search integrationThe advanced search functionality of JIRA allows to use structured queries to search for issues. These queries are written in Atlassian's JIRA Query Language (JQL). The result set is displayed as a list of issues in the issue navigator. It is also possible to save advanced search queries for private or public use. Test for JIRA enhances the advanced search of JIRA with new functions to search for issues in T4J specific entities such as test plans or definition trees. Saved JQL queries can be further used for filtering or adding issues matching the query to a definition tree. How to search for tests
Function ReferenceTest Definition Folder Expand | Returns the issues/tests that are contained in a specific folder in the definition tree of a project. Syntax
Where path represents a part of the hierarchical structure of the definition tree. Path should be of the following form: "project name/parentFolder/.../childFolder" Supported FieldsSupported Operators | |||||||||||||||
= | != | ~ | !~ | > | >= | < | <= | IS | IS NOT | IN | NOT IN | WAS | WAS IN | WAS NOT | WAS NOT IN | CHANGED |
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
issue in testDefinitionFolder("OnlineHotelReservation/Webtests") |
Test Definition Path
Returns the issues/tests that are contained in a specific folder in the definition tree of a project.
Also returns the issues/tests of subsequent folders.
Syntax
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
testDefinitionPath(path) |
Where path represents a part of the hierarchical structure of the definition tree.
Path should be of the following form: "project name/parentFolder/.../childFolder"
Supported Fields
Supported Operators
Examples
Find all issues that are contained in the folder "Webtests" or one of its subfolders within the project "OnlineHotelReservation:
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
issue in testDefinitionPath("OnlineHotelReservation/Webtests") |
Test Plan
Returns all issues/tests that are part of a specific test plan.
Syntax
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
testPlan(project,plan) |
Where project is the name of the project that contains the desired test plan and plan is the name of the test plan.
Supported Fields
Supported Operators
Examples
Find all issues/tests that are part of the test plan "Example Plan" created on the project "OnlineHotelReservation":
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
issue in testPlan("OnlineHotelReservation","Example Plan") |
Failed in Execution
Returns all issues/tests that are marked as failed in a specific execution of a given test plan.
Syntax
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
failedInExecution(project,plan,execution) |
Where project is the name of the project that contains the desired test plan.
Plan is the name of the test plan.
Execution is the name of a specific execution of the given test plan.
Supported Fields
Supported Operators
Examples
Find all issues/tests that are part of the test plan "Example Plan" created on the project "OnlineHotelReservation", which were marked as failed during "Test Execution":
theme | Confluence |
---|---|
firstline | 1 |
linenumbers | true |
T4J provides custom JQL to enable searching integrated issues in Jira.
See Advanced search integration to know more.