Files
codeql/javascript/ql/experimental/adaptivethreatmodeling/test/generic_feature_testing/NonTotalFeature.ql
2022-04-07 15:01:44 +02:00

9 lines
281 B
Plaintext

import javascript
import experimental.adaptivethreatmodeling.EndpointFeatures
import TestUtil
// every feature should produce a value for all endpoints
from EndpointFeature feature, Endpoint endpoint
where not exists(feature.getValue(endpoint))
select endpoint, feature.getName()