Test State Updater

Estimated reading: 1 minute

This component updates the state of existing Test Cases in Azure DevOps (e.g., Ready). It helps teams manage test readiness and maintain consistency across the testing lifecycle. 

Parameters

Parameter Description
Organization Name of the Azure DevOps organization where the project resides.
Project Name of the Azure DevOps project to manage Test Cases.
PAT (Personal Access Token) Personal Access Token used for authentication with Azure DevOps, granting necessary permissions to access and modify test artifacts.
Test Cases JSON JSON-formatted data containing the details of Test Cases, including their association with the specified Test Suite ID.
Sample Json
{
  "plan_id": 203650,
  "suites": [],
  "test_cases": [
    {
      "title": "Successful login with correct credentials",
      "test_case_id": 203653
    },
    {
      "title": "Login with incorrect password",
      "test_case_id": 203654
    }
  ],
  "message": "\u2705 Created Test Plan 'AzureTest2' "
}
Share this Doc

Test State Updater

Or copy link

CONTENTS