ITestRun.AddTestPoints Method (IEnumerable<ITestPoint>, TeamFoundationIdentity)
Adds new test points to the test run.
Must be followed by a Save().
The test result objects returned by this call are not usable until after the save.
Namespace: Microsoft.TeamFoundation.TestManagement.Client
Assembly: Microsoft.TeamFoundation.TestManagement.Client (in Microsoft.TeamFoundation.TestManagement.Client.dll)
Syntax
ITestCaseResultCollection AddTestPoints(
IEnumerable<ITestPoint> points,
TeamFoundationIdentity owner
)
ITestCaseResultCollection^ AddTestPoints(
IEnumerable<ITestPoint^>^ points,
TeamFoundationIdentity^ owner
)
abstract AddTestPoints :
points:IEnumerable<ITestPoint> *
owner:TeamFoundationIdentity -> ITestCaseResultCollection
Function AddTestPoints (
points As IEnumerable(Of ITestPoint),
owner As TeamFoundationIdentity
) As ITestCaseResultCollection
Parameters
points
Type: System.Collections.Generic.IEnumerable<ITestPoint>test points to add.
owner
Type: Microsoft.TeamFoundation.Framework.Client.TeamFoundationIdentityOwner to assign the tests to or null to inherit owner from the test points "AssignedTo".
Return Value
Type: Microsoft.TeamFoundation.TestManagement.Client.ITestCaseResultCollection
See Also
ITestRun Interface
Microsoft.TeamFoundation.TestManagement.Client Namespace
Return to top