ITestPlan.QueryTestPoints Method (String)
Finds and returns all test points that belong to this test plan and that match the provided query.
Namespace: Microsoft.TeamFoundation.TestManagement.Client
Assembly: Microsoft.TeamFoundation.TestManagement.Client (in Microsoft.TeamFoundation.TestManagement.Client.dll)
Syntax
ITestPointCollection QueryTestPoints(
string queryText
)
ITestPointCollection^ QueryTestPoints(
String^ queryText
)
abstract QueryTestPoints :
queryText:string -> ITestPointCollection
Function QueryTestPoints (
queryText As String
) As ITestPointCollection
Parameters
queryText
Type: System.StringA WIQL string that finds test point objects.
Return Value
Type: Microsoft.TeamFoundation.TestManagement.Client.ITestPointCollection
A collection of test points.
Remarks
Here are some of the WIQL fields that can be used in this query: SuiteId ConfigurationId TestCaseId PointState AreaPath RecursiveSuiteId: to query all points in the suite hierarchy starting with RecursiveSuiteId.
See Also
ITestPointCollection
ITestPoint
QueryTestPoints Overload
ITestPlan Interface
Microsoft.TeamFoundation.TestManagement.Client Namespace
Return to top