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