Skip to main content

Test counts dataset

The test counts dataset is a canonical-based dataset that offers a comprehensive view of test-related activities within the system. It captures the counts of various test types, including manual, automated, and exploratory tests, across multiple planning levels or teams. This dataset helps monitor testing progress by tracking the number of tests that have passed, failed, are in progress, or have not been executed. By providing insights into test coverage and execution status, it plays a crucial role in assessing product quality, identifying bottlenecks, and ensuring that testing efforts stay aligned with project timelines and objectives.

note

This dataset's metrics cannot be combined with metrics from other datasets. It is intended for use in date-based analysis only.

The following are the components of this dataset:

Attributes

Attribute NameDescription
Calendar dateCanonical calendar date attribute
Sys_sourceUnique identifier for the source
TestUnique identifier for the test

Metrics

Metric NameDescriptionFormula
Closed testsThe number of tests closed on the selected calendar datecount(case when closed datetime is not null then test_id else null end)
Completed testsThe number of tests completed on the selected calendar datecount(case when completed datetime is not null then test_id else null end)
Created testsThe number of tests created on the selected calendar datecount(test_id)
In progress testsThe number of tests currently in progress on the selected calendar datecount(case when inprogress datetime is not null then test_id else null end)