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