mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
19 lines
505 B
Plaintext
19 lines
505 B
Plaintext
import utils.test.InlineExpectationsTest
|
|
import testModels
|
|
|
|
module InterpretElementTest implements TestSig {
|
|
string getARelevantTag() { result = "interpretElement" }
|
|
|
|
predicate hasActualResult(Location location, string element, string tag, string value) {
|
|
exists(Element e |
|
|
e = interpretElement(_, _, _, _, _, _) and
|
|
location = e.getLocation() and
|
|
element = e.toString() and
|
|
tag = "interpretElement" and
|
|
value = ""
|
|
)
|
|
}
|
|
}
|
|
|
|
import MakeTest<InterpretElementTest>
|