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

No code was given

parent aeb186d0
No related merge requests found
...@@ -32,7 +32,8 @@ from abc import ABC, abstractmethod ...@@ -32,7 +32,8 @@ from abc import ABC, abstractmethod
#from other.GotsisWasilios.TDD_Converter import WasiliRomanNumber as WasiliCalc #from other.GotsisWasilios.TDD_Converter import WasiliRomanNumber as WasiliCalc
#from other.PikkemaatLasse.romannumerals import RomanNumerals as LasseCalc #from other.PikkemaatLasse.romannumerals import RomanNumerals as LasseCalc
#from other.YildirimHatice.converter import RomanNumber as HaticeCalc #from other.YildirimHatice.converter import RomanNumber as HaticeCalc
from other.WeishauptOrlando.RomanConverter import RomanConverter_v1 as OrlandoCalc #from other.WeishauptOrlando.RomanConverter import RomanConverter_v1 as OrlandoCalc
class IConverter(ABC): class IConverter(ABC):
@abstractmethod @abstractmethod
...@@ -75,8 +76,7 @@ class DanisConverter(IConverter): ...@@ -75,8 +76,7 @@ class DanisConverter(IConverter):
class TestConverter(unittest.TestCase): class TestConverter(unittest.TestCase):
def setUp(self): def setUp(self):
self.c = OrlandoCalc() self.c = DanisConverter()
self.c.convert = self.c.int_to_roman
def test_convertOne(self): def test_convertOne(self):
......
...@@ -8,4 +8,4 @@ Roman Numbers - Codes of Group members tested with my testcases: ...@@ -8,4 +8,4 @@ Roman Numbers - Codes of Group members tested with my testcases:
| PikkemaatLasse | yes (8) | none | | PikkemaatLasse | yes (8) | none |
| YildirimHatice | no | 15/26 failed (test_convertZero, test_convertYear, test_convertThirty, test_convertTen, test_convertString, test_convertSign, test_convertNintyNine, test_convertNinety, test_convertNegative, test_convertMultipleNum, test_convertHighNum, test_convertFourty, test_convertFourDigit,test_convertFloat,test_convertEmpty) | | YildirimHatice | no | 15/26 failed (test_convertZero, test_convertYear, test_convertThirty, test_convertTen, test_convertString, test_convertSign, test_convertNintyNine, test_convertNinety, test_convertNegative, test_convertMultipleNum, test_convertHighNum, test_convertFourty, test_convertFourDigit,test_convertFloat,test_convertEmpty) |
| WeishauptOrlando | yes (5) | 2/26 failed (test_convertZero, test_convertNegative) | | WeishauptOrlando | yes (5) | 2/26 failed (test_convertZero, test_convertNegative) |
| | | | | SerchimoMarvin | - | - |
\ No newline at end of file \ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment