mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
9 lines
192 B
Plaintext
9 lines
192 B
Plaintext
import unittest
|
|
|
|
class MyTestCase(unittest.TestCase):
|
|
def test_something(self):
|
|
self.assertEqual(True, False) # add assertion here
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|