mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
10 lines
213 B
Python
10 lines
213 B
Python
from unittest import TestCase
|
|
|
|
class MyTest(TestCase):
|
|
|
|
def test1(self):
|
|
self.assertTrue(1 == 1)
|
|
self.assertFalse(1 > 2)
|
|
self.assertTrue(1 in [1])
|
|
self.assertFalse(0 is "")
|