Skip to content
Snippets Groups Projects
Commit 536efe7a authored by Daniel Rafeh's avatar Daniel Rafeh
Browse files

Test 16/17 erfolgreich

parent 6c1ba095
No related branches found
No related tags found
2 merge requests!4Main,!2Main to develop
...@@ -105,6 +105,10 @@ class TestConverter(unittest.TestCase): ...@@ -105,6 +105,10 @@ class TestConverter(unittest.TestCase):
res = self.c.convert(0) res = self.c.convert(0)
self.assertEqual(res, 'Es gibt keine römische Null') self.assertEqual(res, 'Es gibt keine römische Null')
def test_convertFourty(self):
res = self.c.convert(40)
self.assertEqual(res, 'XL')
......
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