11 lines
164 B
Python
11 lines
164 B
Python
|
import unittest
|
||
|
|
||
|
|
||
|
class MyTestCase(unittest.TestCase):
|
||
|
def test_something(self):
|
||
|
self.assertTrue(True)
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
unittest.main()
|