The test plan resource.

interface TestPlan {
    area?: ShallowReference;
    automatedTestEnvironment?: TestEnvironment;
    automatedTestSettings?: TestSettings;
    build?: ShallowReference;
    buildDefinition?: ShallowReference;
    clientUrl: string;
    description?: string;
    endDate?: Date;
    id: number;
    iteration: string;
    manualTestEnvironment?: TestEnvironment;
    manualTestSettings?: TestSettings;
    name: string;
    owner?: IdentityRef;
    previousBuild?: ShallowReference;
    project?: ShallowReference;
    releaseEnvironmentDefinition?: ReleaseEnvironmentDefinitionReference;
    revision?: number;
    rootSuite: ShallowReference;
    startDate?: Date;
    state?: string;
    testOutcomeSettings?: TestOutcomeSettings;
    updatedBy?: IdentityRef;
    updatedDate?: Date;
    url?: string;
}

Properties

Area of the test plan.

automatedTestEnvironment?: TestEnvironment
automatedTestSettings?: TestSettings

Build to be tested.

buildDefinition?: ShallowReference

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

clientUrl: string
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.

previousBuild?: ShallowReference

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.

rootSuite: ShallowReference

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
updatedDate?: Date
url?: string

URL of the test plan resource.