mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
15 lines
293 B
Plaintext
15 lines
293 B
Plaintext
/**
|
|
* @id cs/examples/eq-true
|
|
* @name Equality test on Boolean
|
|
* @description Finds tests like 'x==true', 'x==false', 'x!=true', '!=false'.
|
|
* @tags equals
|
|
* test
|
|
* boolean
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from EqualityOperation eq
|
|
where eq.getAnOperand() instanceof BoolLiteral
|
|
select eq
|