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

9 errors detected - Report Table adjusted

parent 7774f6dc
Branches feature/BerishaAlma
No related tags found
No related merge requests found
Pipeline #20116 passed
File added
| Name | Interface break | Failed Testcases | | Name | Interface break | Failed Testcases |
|------------------|-----------------|------------------| |------------------|-----------------|------------------|
| AliciMuhamed | yes (8) | none | | AliciMuhamed | yes (8) | none |
| BerishaAlma | | | | BerishaAlma | yes (9) | none |
| GotsisWasilios | | | | GotsisWasilios | | |
| PikkemaatLasse | | | | PikkemaatLasse | | |
| YildirimHatice | | | | YildirimHatice | | |
......
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
import unittest import unittest
from abc import ABC, abstractmethod from abc import ABC, abstractmethod
from other.AliciMuhamed.StringCalculator import StringCalculator as MomoCalc #from other.AliciMuhamed.StringCalculator import StringCalculator as MomoCalc
from other.BerishaAlma.Feature6 import StringCalculator as AlmaCalc
class IStringCalculator(ABC): class IStringCalculator(ABC):
@abstractmethod @abstractmethod
...@@ -93,7 +94,7 @@ class StringCalculator(IStringCalculator): ...@@ -93,7 +94,7 @@ class StringCalculator(IStringCalculator):
class TestStringCalculator(unittest.TestCase): class TestStringCalculator(unittest.TestCase):
def setUp(self): def setUp(self):
self.c = MomoCalc() self.c = AlmaCalc()
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