ApexTestQueueItem
Tracks Apex test executions in the asynchronous test queue, helping developers manage test runs.
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Unique identifier for the Apex test queue item. | |
| CreatedDate | Datetime | True |
Date and time when the test queue item was created. | |
| CreatedById | String | True |
User.Id |
ID of the user who created the test queue item. |
| SystemModstamp | Datetime | True |
System-generated timestamp for tracking the most recent update. | |
| ApexClassId | String | False |
ApexClass.Id |
ID of the Apex class associated with this test execution request. |
| Status | String | True |
Current status of the test queue item, such as Queued or Completed. | |
| ExtendedStatus | String | True |
Detailed status information providing additional context on the execution state. | |
| ParentJobId | String | True |
AsyncApexJob.Id |
ID of the parent Apex job that this test queue item is part of. |