Test Point Class

interface TestPoint {
    comment?: string;
    configuration: TestConfigurationReference;
    id: number;
    isActive: boolean;
    isAutomated?: boolean;
    lastResetToActive?: Date;
    lastUpdatedBy: IdentityRef;
    lastUpdatedDate: Date;
    links: any;
    project: TeamProjectReference;
    results: TestPointResults;
    testCaseReference: TestCaseReference;
    tester?: IdentityRef;
    testPlan: TestPlanReference;
    testSuite: TestSuiteReference;
}

Properties

comment?: string

Comment associated to the Test Point

Configuration associated with the Test Point

id: number

Id of the Test Point

isActive: boolean

Variable to decide whether the test case is Active or not

isAutomated?: boolean

Is the Test Point for Automated Test Case or Manual

lastResetToActive?: Date

Last Reset to Active Time Stamp for the Test Point

lastUpdatedBy: IdentityRef

Last Updated details for the Test Point

lastUpdatedDate: Date

Last Update Time Stamp for the Test Point

links: any

Reference links

Project under which the Test Point is

Results associated to the Test Point

testCaseReference: TestCaseReference

Test Case Reference

tester?: IdentityRef

Tester associated with the Test Point

Test Plan under which the Test Point is

Test Suite under which the Test Point is