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

Test 2/17 erfolgreich

parent a65a4cf9
No related branches found
No related tags found
2 merge requests!4Main,!2Main to develop
...@@ -45,6 +45,10 @@ class TestConverter(unittest.TestCase): ...@@ -45,6 +45,10 @@ class TestConverter(unittest.TestCase):
def test_convertOne(self): def test_convertOne(self):
res = self.c.convert(1) res = self.c.convert(1)
self.assertEqual(res, 'I') self.assertEqual(res, 'I')
def test_convertTwo(self):
res = self.c.convert(2)
self.assertEqual(res, 'II')
if __name__ == "__main__": if __name__ == "__main__":
unittest.main() unittest.main()
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