Your question is Find Tests With No Recent Execution. Start with the requirements and the two tables on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Apex Systems QA engineers use the Apex Test Hub to monitor automated and manual test coverage. Write a PostgreSQL query that identifies tests with no execution history during the last 60 calendar days.
| Column | Type | Description |
|---|---|---|
| test_idPK | INTEGER | Unique test identifier |
| test_name | VARCHAR(150) | Test name |
| product_area | VARCHAR(80) | Product or feature area |
| owner_name | VARCHAR(100) | Assigned test owner |
| Column | Type | Description |
|---|---|---|
| execution_idPK | INTEGER | Unique execution identifier |
| test_id | INTEGER | Referenced test identifier |
| executed_at | TIMESTAMPTZ | Execution timestamp |
| execution_status | VARCHAR(20) | Execution result |