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

15/26 Tests failed

parent 551079f1
No related branches found
No related tags found
No related merge requests found
File deleted
...@@ -30,7 +30,8 @@ from abc import ABC, abstractmethod ...@@ -30,7 +30,8 @@ from abc import ABC, abstractmethod
#from other.AliciMuhamed.Test_Converter_Römische_Zahlen import ConverterMomo as MomoCalc #from other.AliciMuhamed.Test_Converter_Römische_Zahlen import ConverterMomo as MomoCalc
#from other.BerishaAlma.test2converter import RomanNumber as AlmaCalc #from other.BerishaAlma.test2converter import RomanNumber as AlmaCalc
#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
class IConverter(ABC): class IConverter(ABC):
@abstractmethod @abstractmethod
...@@ -73,8 +74,7 @@ class DanisConverter(IConverter): ...@@ -73,8 +74,7 @@ class DanisConverter(IConverter):
class TestConverter(unittest.TestCase): class TestConverter(unittest.TestCase):
def setUp(self): def setUp(self):
self.c = LasseCalc() self.c = HaticeCalc()
self.c.convert = self.c.to_roman
def test_convertOne(self): def test_convertOne(self):
......
File deleted
| Name | Interface break | Failed Testcases | | Name | Interface break | Failed Testcases |
|----------------|-----------------|--------------------------------------------------------------------------------------| |----------------|-----------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| AliciMuhamed | yes (4) | test_convertFloat test_convertNegative test_convertZero | | AliciMuhamed | yes (4) | test_convertFloat test_convertNegative test_convertZero |
| BerishaAlma | no | all except one (test_convertThree) | | BerishaAlma | no | all except one (test_convertThree) |
| GotsisWasilios | no | 23/26 failed (test_convertTwenty, test_convertSixty, test_convertSeventy successful) | | GotsisWasilios | no | 23/26 failed (test_convertTwenty, test_convertSixty, test_convertSeventy successful) |
| 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) |
| | | | | | | |
| | | | | | | |
\ 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