mirror of
https://github.com/wax911/plugin-architecture.git
synced 2025-07-21 04:21:03 +02: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()
|