mirror of
https://github.com/wassname/segpy.git
synced 2026-07-13 17:45:25 +08:00
11 lines
172 B
Python
11 lines
172 B
Python
import unittest
|
|
|
|
|
|
class MyTestCase(unittest.TestCase):
|
|
def test_something(self):
|
|
self.assertEqual(True, False)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|