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

25/26 Tests failed -> documented in report.md

parent a8e25165
No related branches found
No related tags found
No related merge requests found
...@@ -27,7 +27,8 @@ ...@@ -27,7 +27,8 @@
import unittest import unittest
from abc import ABC, abstractmethod 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
class IConverter(ABC): class IConverter(ABC):
@abstractmethod @abstractmethod
...@@ -70,7 +71,7 @@ class DanisConverter(IConverter): ...@@ -70,7 +71,7 @@ class DanisConverter(IConverter):
class TestConverter(unittest.TestCase): class TestConverter(unittest.TestCase):
def setUp(self): def setUp(self):
self.c = MomoCalc self.c = AlmaCalc()
def test_convertOne(self): def test_convertOne(self):
res = self.c.convert(1) res = self.c.convert(1)
......
File added
| 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) |
| | | | | | | |
| | | | | | | |
| | | | | | | |
......
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