ITestPoint Interface

 

Represents the execution state of a test case in a suite against a configuration as part of a test plan.

Namespace:   Microsoft.TeamFoundation.TestManagement.Client
Assembly:  Microsoft.TeamFoundation.TestManagement.Client (in Microsoft.TeamFoundation.TestManagement.Client.dll)

Syntax

public interface ITestPoint : IIdentifiable<int>, INotifyPropertyChanged, 
    ITestPointProperties
public interface class ITestPoint : IIdentifiable<int>, INotifyPropertyChanged, 
    ITestPointProperties
type ITestPoint = 
    interface
        interface IIdentifiable<int>
        interface INotifyPropertyChanged
        interface ITestPointProperties
    end
Public Interface ITestPoint
    Inherits IIdentifiable(Of Integer), INotifyPropertyChanged, ITestPointProperties

Properties

Name Description
System_CAPS_pubproperty AssignedTo

Gets the identity of the user to which this test point is assigned.

System_CAPS_pubproperty AssignedToName

User this point is assigned to.

System_CAPS_pubproperty AssignedToTeamFoundationId

User this point is assigned to.

System_CAPS_pubproperty Comment

Gets or sets a comment for the associated test point.(Inherited from ITestPointProperties.)

System_CAPS_pubproperty ConfigurationId

Gets the identifier of the ITestConfiguration that this point tests.

System_CAPS_pubproperty ConfigurationName

Name of the ITestConfiguration that this point represents.

System_CAPS_pubproperty HasCachedProperties

Determines whether the Point object has any cached properties from the server.

System_CAPS_pubproperty History

Gets a collection of ITestPointProperties objects that represent a historical list of the properties of this test point over time.

System_CAPS_pubproperty Id

Gets the identifier.(Inherited from IIdentifiable<TKey>.)

System_CAPS_pubproperty IsTestCaseAutomated

Returns the same result as TestCaseWorkItem.IsAutomated, but may use cached properties to answer the question

System_CAPS_pubproperty Item[String]

Access the properties of the test case of the point, possibly from the internal cached-properties table

System_CAPS_pubproperty LastUpdated

Gets the date that this object was last updated.(Inherited from ITestPointProperties.)

System_CAPS_pubproperty LastUpdatedBy

Gets the identity of the last person to update this object.(Inherited from ITestPointProperties.)

System_CAPS_pubproperty LastUpdatedByName

Last person to update point.(Inherited from ITestPointProperties.)

System_CAPS_pubproperty MostRecentFailureType

Obsolete.Gets the most recent FailureType for the associated test point.(Inherited from ITestPointProperties.)

System_CAPS_pubproperty MostRecentFailureTypeId

(Inherited from ITestPointProperties.)

System_CAPS_pubproperty MostRecentResolutionStateId

Gets the ID for the most recent resolution state setting.(Inherited from ITestPointProperties.)

System_CAPS_pubproperty MostRecentResult

Gets the most recent test case result.

System_CAPS_pubproperty MostRecentResultId

Gets the ID of the most recent result setting.(Inherited from ITestPointProperties.)

System_CAPS_pubproperty MostRecentResultOutcome

Gets the most recent result outcome setting.(Inherited from ITestPointProperties.)

System_CAPS_pubproperty MostRecentResultState

Gets the most recent result state setting.(Inherited from ITestPointProperties.)

System_CAPS_pubproperty MostRecentRunId

Gets the most recent test run ID.(Inherited from ITestPointProperties.)

System_CAPS_pubproperty Plan

Gets the associated test plan.

System_CAPS_pubproperty Revision

Gets the internal revision number of the associated test point.(Inherited from ITestPointProperties.)

System_CAPS_pubproperty State

Gets the current state of the associated test point.(Inherited from ITestPointProperties.)

System_CAPS_pubproperty SuiteId

Gets the identifier for the test suite that contains this test point.

System_CAPS_pubproperty TestCaseExists

Gets a value that indicates whether the current test case exists on the server.

System_CAPS_pubproperty TestCaseId

Gets the ID of the associated test case.

System_CAPS_pubproperty TestCaseWorkItem

Gets the work item that is associated with the associated test case.

System_CAPS_pubproperty UserData

Gets or sets an arbitrary object that the user has associated with this test point.

Methods

Name Description
System_CAPS_pubmethod Block()

Blocks this test point by setting the ITestPointProperties.State property to TestPointState.NotReady.

System_CAPS_pubmethod QueryAssociatedWorkItemsFromResults()

Retrieves an array of integer IDs for the work items that are associated with the corresponding results of this test point.

System_CAPS_pubmethod Refresh()

Updates this object by using data from the server.

System_CAPS_pubmethod Save()

Persists this object on the server.

System_CAPS_pubmethod Unblock()

Unblocks this test point by setting the ITestPointProperties.State property to TestPointState.Ready.

Events

Name Description
System_CAPS_pubevent PropertyChanged

(Inherited from INotifyPropertyChanged.)

See Also

ITestConfiguration
IIdentifiable<TKey>
INotifyPropertyChanged
ITestPointProperties
Microsoft.TeamFoundation.TestManagement.Client Namespace

Return to top