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

9 errors detected - Report table adjusted

parent 5092d045
No related branches found
No related tags found
No related merge requests found
Pipeline #20131 passed
File added
......@@ -24,7 +24,8 @@ from abc import ABC, abstractmethod
#from other.GotsisWasilios.TDD_StringCalculator import StringCalculator as WasiliCalc
#from other.PikkemaatLasse.stringcalculator import StringCalculator as LasseCalc
#from other.SerchimoMarvin.feature7 import StringCalculator as MarvCalc
from other.WeishauptOrlando.string_calculator import StringCalculator as OrlCalc
#from other.WeishauptOrlando.string_calculator import StringCalculator as OrlCalc
from other.YildirimHatice.feature6 import StringCalculator as HatCalc
class IStringCalculator(ABC):
@abstractmethod
......@@ -98,7 +99,7 @@ class StringCalculator(IStringCalculator):
class TestStringCalculator(unittest.TestCase):
def setUp(self):
self.c = OrlCalc()
self.c = HatCalc()
def test_empty(self):
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