mirror of
https://github.com/github/codeql.git
synced 2026-06-11 16:01:09 +02:00
10 lines
253 B
Python
10 lines
253 B
Python
from unittest import TestCase
|
|
|
|
class MyTest(TestCase):
|
|
|
|
def test1(self):
|
|
self.assertTrue(1 == 1) # $ Alert
|
|
self.assertFalse(1 > 2) # $ Alert
|
|
self.assertTrue(1 in [1]) # $ Alert
|
|
self.assertFalse(0 is "") # $ Alert
|