AlgoDS-Examen2025/tests/test_ex3.py
LordBaryhobal 7312f8a293
All checks were successful
Python unit tests / unittests (push) Successful in 7s
initial commit
2025-01-28 12:52:19 +01:00

9 lines
143 B
Python

import unittest
class MyTestCase(unittest.TestCase):
def test_simple1(self):
pass
if __name__ == '__main__':
unittest.main()