mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
10 lines
200 B
Python
10 lines
200 B
Python
from unittest import TestCase
|
|
|
|
class MyTest(TestCase):
|
|
|
|
|
|
def testInts(self):
|
|
self.assertEqual(1, 1)
|
|
self.assertLessEqual(1, 2)
|
|
self.assertIn(1, []) #This will fail
|