Skip to content
Snippets Groups Projects
test_functional.py 194 B
Newer Older
Filip Lux's avatar
Filip Lux committed
import unittest


class MyTestCase(unittest.TestCase):
    def test_something(self):
        self.assertEqual(True, False)  # add assertion here


if __name__ == '__main__':
    unittest.main()