ITestPlan Interface

 

No content here will be updated; please do not add material here.

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

Syntax

public interface ITestPlan : ITestObject<int>, IIdentifiable<int>, 
    IPropertyOwner, IDataErrorInfo, INotifyPropertyChanged
public interface class ITestPlan : ITestObject<int>, IIdentifiable<int>, 
    IPropertyOwner, IDataErrorInfo, INotifyPropertyChanged
type ITestPlan = 
    interface
        interface ITestObject<int>
        interface IIdentifiable<int>
        interface IPropertyOwner
        interface IDataErrorInfo
        interface INotifyPropertyChanged
    end
Public Interface ITestPlan
    Inherits ITestObject(Of Integer), IIdentifiable(Of Integer), IPropertyOwner,
    IDataErrorInfo, INotifyPropertyChanged

Properties

Name Description
System_CAPS_pubproperty AreaPath

Gets or sets the area path of this test.

System_CAPS_pubproperty AutomatedTestEnvironmentId

Gets or sets the GUID of the environment for automated testing.

System_CAPS_pubproperty AutomatedTestSettingsId

Gets or sets the ID for the settings to use for automated testing.

System_CAPS_pubproperty BuildDirectory

Gets the name of the folder for the build that is currently associated with this plan.

System_CAPS_pubproperty BuildFilter

Gets the set of criteria that restricts the builds that can be associated with this test plan.

System_CAPS_pubproperty BuildNumber

Gets the name of the build that is currently associated with this test plan.

System_CAPS_pubproperty BuildTakenDate

Gets the date and time that the current build was associated with this test plan.

System_CAPS_pubproperty BuildUri

Gets or sets the uniform resource identifier (URI) for the build that is currently associated with this test plan.

System_CAPS_pubproperty Description

Gets or sets the description of this test plan.

System_CAPS_pubproperty EndDate

Gets or sets the end date for this test plan.

System_CAPS_pubproperty Error

(Inherited from IDataErrorInfo.)

System_CAPS_pubproperty Id

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

System_CAPS_pubproperty InvalidProperties

Gets a list of property names that are invalid.(Inherited from IPropertyOwner.)

System_CAPS_pubproperty IsDirty

Gets a value that indicates whether any properties have changed since the last refresh, fetch, or save.(Inherited from IPropertyOwner.)

System_CAPS_pubproperty Item[String]

(Inherited from IDataErrorInfo.)

System_CAPS_pubproperty Iteration

Gets or sets the iteration to which this test plan belongs.

System_CAPS_pubproperty LastUpdated

Gets the date and time that this test plan was last updated.

System_CAPS_pubproperty LastUpdatedBy

Gets the identity of the last person to update this test plan.

System_CAPS_pubproperty LastUpdatedByName

Last person to update plan

System_CAPS_pubproperty Links

Gets a collection of external links that is associated with this test plan.

System_CAPS_pubproperty ManualTestEnvironmentId

Gets or sets the GUID of the environment for manual testing.

System_CAPS_pubproperty ManualTestSettingsId

Gets or sets the ID for the manual test settings.

System_CAPS_pubproperty Name

Gets or sets the name of this test plan.

System_CAPS_pubproperty NewBuildStatistics

Gets a set of information about what has changed since the build that is currently associated with this plan was created.

System_CAPS_pubproperty Owner

Gets or sets the identity of the person who owns this test plan.

System_CAPS_pubproperty OwnerName

User who owns the plan.

System_CAPS_pubproperty OwnerTeamFoundationId

TeamFoundationId of the user who owns the plan.

System_CAPS_pubproperty PreviousBuildUri

Gets the URI of the previous build that was associated with this test plan.

System_CAPS_pubproperty Project

Gets the test project.(Inherited from ITestObject<T>.)

System_CAPS_pubproperty Revision

Gets the current revision number for this object.(Inherited from ITestObject<T>.)

System_CAPS_pubproperty RootSuite

Gets the root test suite for this test plan.

System_CAPS_pubproperty StartDate

Gets or sets the start date for this test plan.

System_CAPS_pubproperty State

Obsolete.Gets or sets the current state of this test plan.

System_CAPS_pubproperty UserData

Gets or sets an arbitrary object or value that is not persisted, but allows test management objects to be dynamically extended.(Inherited from ITestObject<T>.)

Methods

Name Description
System_CAPS_pubmethod Clone()

Creates a copy of this test plan and returns it.

System_CAPS_pubmethod CopyPropertiesFrom(ITestPlan)

System_CAPS_pubmethod CreateLink()

Creates a new, empty ITestExternalLink.

System_CAPS_pubmethod CreateTestRun(Boolean)

Creates and returns a new automated or manual test-run for this test plan.

System_CAPS_pubmethod Delete()

Deletes this test plan and all test runs and test points that are associated with it.

System_CAPS_pubmethod Delete(DeleteAction)

Deletes this test plan and all test runs and test points that are associated with it.

System_CAPS_pubmethod FindTestPoint(Int32)

Finds and returns a test point that is specified by the test point ID.

System_CAPS_pubmethod FindTestPoint(Int32, String)

Finds and returns a test point that is specified by the test point ID.

System_CAPS_pubmethod QueryImpactedPoints(Uri)

Returns a collection of test points that is affected by all builds. This includes previous builds and the specified build.

System_CAPS_pubmethod QueryImpactedPoints(Uri, String)

Returns a collection of test points that is affected by all builds. This includes previous builds and the specified build.

System_CAPS_pubmethod QueryTestPointHierarchy(String)

Returns the hierarchy of test suites that contains test points that match the WIQL query.

System_CAPS_pubmethod QueryTestPoints(String)

Finds and returns all test points that belong to this test plan and that match the provided query.

System_CAPS_pubmethod QueryTestPoints(String, String)

Finds and returns all test points that belong to this test plan and that match the provided point query and field value subquery.

System_CAPS_pubmethod QueryTestPoints(String, String, String[], Boolean)

Finds all points that belong to this plan and match the given WIQL conditions.

System_CAPS_pubmethod QueryTestPointsAndStatistics(String, String, ITestPointStatistics)

Finds all points that belong to this plan and match the given WIQL conditions.

System_CAPS_pubmethod QueryTestPointsAndStatistics(String, String, String[], ITestPointStatistics)

Finds all points that belong to this plan and match the given WIQL conditions.

System_CAPS_pubmethod QueryTestPointStatistics(String)

Finds and returns the test point statistics that belong to this test plan and that match the given query.

System_CAPS_pubmethod QueryTestPointStatisticsByPivot(String, List<TestPointStatisticsQueryPivotType>)

Returns statistics of points by pivot that belong to this plan and match the given WIQL conditions.

System_CAPS_pubmethod Refresh()

Refreshes all objects in this test plan by using current data from the server.

System_CAPS_pubmethod RefreshRootSuite()

System_CAPS_pubmethod RefreshTestCase(Int32)

Refreshes all instances of the specified test case in this test plan.

System_CAPS_pubmethod Save()

Saves the data from all objects in this test plan to the server.

System_CAPS_pubmethod SetBuildInfo(String, String)

Events

Name Description
System_CAPS_pubevent PropertyChanged

(Inherited from INotifyPropertyChanged.)

Remarks

No content here will be updated; please do not add material here.

See Also

Microsoft.TeamFoundation.TestManagement.Client Namespace

Return to top