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

6 errors detected - Report table adjusted

parent ac8958f9
No related branches found
No related tags found
No related merge requests found
Pipeline #20128 passed
File added
...@@ -5,5 +5,5 @@ ...@@ -5,5 +5,5 @@
| GotsisWasilios | yes (8) | none | | GotsisWasilios | yes (8) | none |
| PikkemaatLasse | yes (8) | none | | PikkemaatLasse | yes (8) | none |
| YildirimHatice | | | | YildirimHatice | | |
| WeishauptOrlando | | | | WeishauptOrlando | yes (6) | none |
| SerchimoMarvin | yes (6) | none | | SerchimoMarvin | yes (6) | none |
\ No newline at end of file
...@@ -23,7 +23,8 @@ from abc import ABC, abstractmethod ...@@ -23,7 +23,8 @@ from abc import ABC, abstractmethod
#from other.BerishaAlma.Feature6 import StringCalculator as AlmaCalc #from other.BerishaAlma.Feature6 import StringCalculator as AlmaCalc
#from other.GotsisWasilios.TDD_StringCalculator import StringCalculator as WasiliCalc #from other.GotsisWasilios.TDD_StringCalculator import StringCalculator as WasiliCalc
#from other.PikkemaatLasse.stringcalculator import StringCalculator as LasseCalc #from other.PikkemaatLasse.stringcalculator import StringCalculator as LasseCalc
from other.SerchimoMarvin.feature7 import StringCalculator as MarvCalc #from other.SerchimoMarvin.feature7 import StringCalculator as MarvCalc
from other.WeishauptOrlando.string_calculator import StringCalculator as OrlCalc
class IStringCalculator(ABC): class IStringCalculator(ABC):
@abstractmethod @abstractmethod
...@@ -97,7 +98,7 @@ class StringCalculator(IStringCalculator): ...@@ -97,7 +98,7 @@ class StringCalculator(IStringCalculator):
class TestStringCalculator(unittest.TestCase): class TestStringCalculator(unittest.TestCase):
def setUp(self): def setUp(self):
self.c = MarvCalc() self.c = OrlCalc()
def test_empty(self): def test_empty(self):
res = self.c.add("") res = self.c.add("")
......
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