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

All Tests were successful

parent 820d2d30
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,8 @@ from abc import ABC, abstractmethod
#from other.YildirimHatice.converter import RomanNumber as HaticeCalc
#from other.WeishauptOrlando.RomanConverter import RomanConverter_v1 as OrlandoCalc
#TESTCASES OF OTHER STUDENTS
from other.AliciMuhamed.Test_Converter_Römische_Zahlen import TestRomanConverter as MomoTest
class IConverter(ABC):
@abstractmethod
......@@ -74,7 +76,7 @@ class DanisConverter(IConverter):
return "Bitte ganze Zahlen eingeben"
class TestConverter(unittest.TestCase):
"""class TestConverter(unittest.TestCase):
def setUp(self):
self.c = DanisConverter()
......@@ -181,7 +183,7 @@ class TestConverter(unittest.TestCase):
def test_convertEmpty(self):
res = self.c.convert('')
self.assertEqual(res, "Bitte ganze Zahlen eingeben")
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