ITestPlan.QueryTestPointHierarchy Method (String)
Returns the hierarchy of test suites that contains test points that match the WIQL query.
Namespace: Microsoft.TeamFoundation.TestManagement.Client
Assembly: Microsoft.TeamFoundation.TestManagement.Client (in Microsoft.TeamFoundation.TestManagement.Client.dll)
Syntax
HierarchyEntry QueryTestPointHierarchy(
string queryText
)
HierarchyEntry^ QueryTestPointHierarchy(
String^ queryText
)
abstract QueryTestPointHierarchy :
queryText:string -> HierarchyEntry
Function QueryTestPointHierarchy (
queryText As String
) As HierarchyEntry
Parameters
queryText
Type: System.StringA WIQL query string.
Return Value
Type: Microsoft.TeamFoundation.TestManagement.Client.HierarchyEntry
The root of the test suites hierarchy that contains test points that match the query.
Remarks
Here are some of the WIQL fields that can be used in this query: SuiteId ConfigurationId TestCaseId PointState AreaPath SuiteId = X will retrieve all children of point X SuiteId UNDER X will retrieve all descendants of point X
See Also
HierarchyEntry
ITestPlan Interface
Microsoft.TeamFoundation.TestManagement.Client Namespace
Return to top