Rename framework coverage query

Move it to the other summary queries, update all references.
This commit is contained in:
Benjamin Muskalla
2022-02-08 11:14:03 +01:00
parent 85a8efab63
commit ff8a96b96d
6 changed files with 8 additions and 8 deletions

View File

@@ -0,0 +1,18 @@
/**
* @id java/summary/framework-coverage
* @name Metrics of framework coverage
* @description Expose metrics for the number of API endpoints covered by CSV models.
* @kind metric
* @tags summary
*/
import java
import semmle.code.java.dataflow.ExternalFlow
from string packageAndType, int rows
where
exists(string package, string type |
packageAndType = package + ";" + type and
rows = strictsum(int n, string kind | modelCoverage(package, _, kind, type, n) | n)
)
select packageAndType, rows