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

Test 26/26 successful

parent 3c956530
2 merge requests!4Main,!2Main to develop
Pipeline #19983 passed
......@@ -163,6 +163,18 @@ class TestConverter(unittest.TestCase):
res = self.c.convert(4000)
self.assertEqual(res, "MMMM")
def test_convertThirty(self):
res = self.c.convert(30)
self.assertEqual(res, "XXX")
def test_convertNinety(self):
res = self.c.convert(90)
self.assertEqual(res, "XC")
def test_convertEmpty(self):
res = self.c.convert('')
self.assertEqual(res, "Bitte ganze Zahlen eingeben")
......
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