gazprea-fuzzer-python/ast_generator/test/test_scope.py

11 lines
194 B
Python
Raw Normal View History

import unittest
class MyTestCase(unittest.TestCase):
def test_something(self):
self.assertEqual(True, False) # add assertion here
if __name__ == '__main__':
unittest.main()