initial commit
All checks were successful
Python unit tests / unittests (push) Successful in 7s

This commit is contained in:
2025-01-28 12:52:19 +01:00
commit 7312f8a293
15 changed files with 279 additions and 0 deletions

0
tests/__init__.py Normal file
View File

8
tests/test_ex1.py Normal file
View File

@ -0,0 +1,8 @@
import unittest
class MyTestCase(unittest.TestCase):
def test_simple1(self):
pass
if __name__ == '__main__':
unittest.main()

8
tests/test_ex2.py Normal file
View File

@ -0,0 +1,8 @@
import unittest
class MyTestCase(unittest.TestCase):
def test_simple1(self):
pass
if __name__ == '__main__':
unittest.main()

8
tests/test_ex3.py Normal file
View File

@ -0,0 +1,8 @@
import unittest
class MyTestCase(unittest.TestCase):
def test_simple1(self):
pass
if __name__ == '__main__':
unittest.main()

8
tests/test_ex4.py Normal file
View File

@ -0,0 +1,8 @@
import unittest
class MyTestCase(unittest.TestCase):
def test_simple1(self):
pass
if __name__ == '__main__':
unittest.main()

8
tests/test_ex5.py Normal file
View File

@ -0,0 +1,8 @@
import unittest
class MyTestCase(unittest.TestCase):
def test_simple1(self):
pass
if __name__ == '__main__':
unittest.main()