mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
13 lines
388 B
Plaintext
13 lines
388 B
Plaintext
import python
|
|
import experimental.meta.ConceptsTest
|
|
|
|
class DedicatedResponseTest extends HttpServerHttpResponseTest {
|
|
DedicatedResponseTest() { file.getShortName() = "response_test.py" }
|
|
}
|
|
|
|
class OtherResponseTest extends HttpServerHttpResponseTest {
|
|
OtherResponseTest() { not this instanceof DedicatedResponseTest }
|
|
|
|
override string getARelevantTag() { result = "HttpResponse" }
|
|
}
|