Skip to content
Snippets Groups Projects
Commit c96032c6 authored by Muhamed's avatar Muhamed
Browse files

Test 1

parent 58b47fdf
No related branches found
No related tags found
No related merge requests found
Pipeline #19973 failed
#Test_Converter_Römische_Zahlen
import unittest
def convert(n: int) -> str:
if n == 1:
return "I"
return ""
class TestRomanConverter(unittest.TestCase):
def test_1(self):
self.assertEqual(convert(1), "I") # Erwartet "I" für 1
if __name__ == "__main__":
unittest.main()
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment