TP_JO2024/athlete/tests/test_getAthlete.py

9 lines
192 B
Python
Raw Normal View History

2024-03-27 11:18:57 +01:00
import unittest
class MyTestCase(unittest.TestCase):
def test_something(self):
self.assertEqual(True, False) # add assertion here
if __name__ == '__main__':
unittest.main()