Struct azure_devops_rust_api::test_plan::test_point::Client
source · pub struct Client(_);Implementations§
source§impl Client
impl Client
sourcepub fn get_points_list(
&self,
organization: impl Into<String>,
project: impl Into<String>,
plan_id: i32,
suite_id: i32
) -> RequestBuilder
pub fn get_points_list( &self, organization: impl Into<String>, project: impl Into<String>, plan_id: i32, suite_id: i32 ) -> RequestBuilder
Get all the points inside a suite based on some filters
Arguments:
organization: The name of the Azure DevOps organization.project: Project ID or project nameplan_id: ID of the test plan for which test points are requested.suite_id: ID of the test suite for which test points are requested
sourcepub fn get_points(
&self,
organization: impl Into<String>,
project: impl Into<String>,
plan_id: i32,
suite_id: i32,
point_id: impl Into<String>
) -> RequestBuilder
pub fn get_points( &self, organization: impl Into<String>, project: impl Into<String>, plan_id: i32, suite_id: i32, point_id: impl Into<String> ) -> RequestBuilder
Get a particular Test Point from a suite.
Arguments:
organization: The name of the Azure DevOps organization.project: Project ID or project nameplan_id: ID of the test plan for which test points are requested.suite_id: ID of the test suite for which test points are requested.point_id: ID of test point to be fetched.
sourcepub fn update(
&self,
organization: impl Into<String>,
body: Vec<TestPointUpdateParams>,
project: impl Into<String>,
plan_id: i32,
suite_id: i32
) -> RequestBuilder
pub fn update( &self, organization: impl Into<String>, body: Vec<TestPointUpdateParams>, project: impl Into<String>, plan_id: i32, suite_id: i32 ) -> RequestBuilder
Update Test Points. This is used to Reset test point to active, update the outcome of a test point or update the tester of a test point
Arguments:
organization: The name of the Azure DevOps organization.body: A TestPointUpdateParams Object.project: Project ID or project nameplan_id: ID of the test plan for which test points are requested.suite_id: ID of the test suite for which test points are requested.