11 lines
159 B
Python
11 lines
159 B
Python
import unittest
|
|
|
|
class BasicTest(unittest.TestCase):
|
|
|
|
def test_empty(self):
|
|
self.assertTrue(True)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|