The test plan resource.

interface TestPlan {
    _links: any;
    areaPath?: string;
    automatedTestEnvironment?: TestEnvironment;
    automatedTestSettings?: TestSettings;
    buildDefinition?: BuildDefinitionReference;
    buildId?: number;
    description?: string;
    endDate?: Date;
    id: number;
    iteration: string;
    manualTestEnvironment?: TestEnvironment;
    manualTestSettings?: TestSettings;
    name: string;
    owner?: IdentityRef;
    previousBuildId?: number;
    project?: TeamProjectReference;
    releaseEnvironmentDefinition?: ReleaseEnvironmentDefinitionReference;
    revision?: number;
    rootSuite: TestSuiteReference;
    startDate?: Date;
    state?: string;
    testOutcomeSettings?: TestOutcomeSettings;
    updatedBy?: IdentityRef;
    updatedDate?: Date;
}

Hierarchy (View Summary)

Properties

_links: any

Relevant links

areaPath?: string

Area of the test plan.

automatedTestEnvironment?: TestEnvironment
automatedTestSettings?: TestSettings
buildDefinition?: BuildDefinitionReference

The Build Definition that generates a build associated with this test plan.

buildId?: number

Build to be tested.

description?: string

Description of the test plan.

endDate?: Date

End date for the test plan.

id: number

ID of the test plan.

iteration: string

Iteration path of the test plan.

manualTestEnvironment?: TestEnvironment
manualTestSettings?: TestSettings
name: string

Name of the test plan.

owner?: IdentityRef

Owner of the test plan.

previousBuildId?: number

Previous build Id associated with the test plan

Project which contains the test plan.

releaseEnvironmentDefinition?: ReleaseEnvironmentDefinitionReference

Release Environment to be used to deploy the build and run automated tests from this test plan.

revision?: number

Revision of the test plan.

Root test suite of the test plan.

startDate?: Date

Start date for the test plan.

state?: string

State of the test plan.

testOutcomeSettings?: TestOutcomeSettings

Value to configure how same tests across test suites under a test plan need to behave

updatedBy?: IdentityRef

Identity Reference for the last update of the test plan

updatedDate?: Date

Updated date of the test plan