mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
12 lines
227 B
Python
12 lines
227 B
Python
import unittest
|
|
|
|
class T(unittest.TestCase):
|
|
|
|
def test_thing(self):
|
|
l = 10
|
|
s = [0]
|
|
with self.assertRaises(TypeError):
|
|
l[1000]
|
|
with self.assertRaises(IndexError):
|
|
s[1]
|