Skip to content

Commit f6dfcb9

Browse files
committed
feat(indicator): add software test coverage quality indicator
Introduces a new quality indicator describing the sufficiency of test suite coverage, including metadata, relevant quality dimensions, and references. Supports improved assessment of software reliability and functional suitability.
1 parent ba8b5dc commit f6dfcb9

1 file changed

Lines changed: 48 additions & 0 deletions

File tree

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
{
2+
"@context": "https://w3id.org/everse/rsqi#",
3+
"@id": "https://w3id.org/everse/i/indicators/software_test_coverage",
4+
"@type": "SoftwareQualityIndicator",
5+
"name": "Software has sufficient test coverage",
6+
"abbreviation": "software_test_coverage",
7+
"description": "Indicates that the test suite covers most (or ideally all) the code branches, input fields, and functionality",
8+
"keywords": [
9+
"test coverage",
10+
"code coverage",
11+
"branch coverage",
12+
"coverage threshold",
13+
"test completeness"
14+
],
15+
"identifier": {
16+
"@id": "https://w3id.org/everse/i/indicators/software_test_coverage"
17+
},
18+
"status": "Active",
19+
"version": "0.0.1",
20+
"author": {
21+
"@type": "schema:Organization",
22+
"name": "ELIXIR-Steers",
23+
"url": "https://elixir-europe.org/about-us/how-funded/eu-projects/steers"
24+
},
25+
"contact": [
26+
{
27+
"@type": "schema:Person",
28+
"name": "Daniel Garijo"
29+
},
30+
{
31+
"@type": "schema:Person",
32+
"name": "Andres Montero"
33+
}
34+
],
35+
"source": {
36+
"url": "https://doi.org/10.5281/zenodo.17035105",
37+
"name": "ELIXIR Steers D2.1 Report on best-practices and indicators available and used by selected Communities"
38+
},
39+
"qualityDimension": [
40+
{
41+
"@id": "https://w3id.org/everse/i/dimensions/reliability"
42+
},
43+
{
44+
"@id": "https://w3id.org/everse/i/dimensions/functional_suitability"
45+
}
46+
],
47+
"created": "03-12-2025"
48+
}

0 commit comments

Comments
 (0)