For the complete documentation index, see llms.txt. This page is also available as Markdown.

Suites, Sections & Subsections

Suites, Sections, and Subsections are used to organize test cases within a test project. They help structure large test libraries by grouping related test cases in a clear, hierarchical way.


Where They Fit in the Test Case Library

The Test Case Library follows this hierarchy:

Project
 └─ Test Suite
     └─ Section
         └─ Subsection
             └─ Test Case
  • Suites belong directly to a Test Project

  • Sections belong to a Suite

  • Subsections belong to a Section

  • Test cases can be created at any level of the library tree, from the test project down to a subsection.


Test Suites

A Test Suite is the primary grouping mechanism under a test project. Test suites group test cases by feature, module, or functional area and act as the parent container for sections and test cases.

Suite names must be unique within the same project

Who Can Manage Test Suites?

Action
Required Permission

Create test suite

Create/Edit Test Suite

Edit test suite

Create/Edit Test Suite

Delete test suite

Delete Test Suite

Permissions are managed in Roles and Permissions.


How to Create a Test Suite

Steps

  1. Right-click the Project where the suite should be created

  2. Select Add Test Suite

  3. Enter:

    • Name (required)

  4. Click CREATE

The suite appears under the selected project in the Test Case Library.


How to Edit a Test Suite

Steps

  1. Right-click the test suite

  2. Select Edit

  3. Update the name

  4. Click SAVE


You can share a direct link to a test suite.

Steps

  1. Right-click the test suite

  2. Select Copy Link

  3. Share the copied link using your preferred method


How to Delete a Test Suite

Steps

  1. Right-click the test suite

  2. Select Delete

  3. Confirm by clicking YES


Last updated