Files
codeql/csharp/ql/test/library-tests/namespaces/Namespaces3.ql
2023-11-10 08:46:15 +01:00

15 lines
261 B
Plaintext

/**
* @name Test for namespaces
*/
import csharp
from Namespace n
where
n.hasFullyQualifiedName("P1", "P2") and
n.getAClass().hasName("A") and
n.getAClass().hasName("B") and
n.getAStruct().hasName("S") and
n.getAnInterface().hasName("I")
select n