mirror of
https://github.com/github/codeql.git
synced 2026-05-24 16:17:07 +02:00
9 lines
369 B
Plaintext
9 lines
369 B
Plaintext
import javascript
|
|
import experimental.adaptivethreatmodeling.EndpointFeatures
|
|
import TestUtil
|
|
|
|
// every feature must produce a value for at least one endpoint, otherwise the feature is completely broken, or a relevant test example is missing
|
|
from EndpointFeature feature
|
|
where forall(Endpoint endpoint | not exists(feature.getValue(endpoint)))
|
|
select feature.getName()
|