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

changed one def in TDD_Converter because there were 2 with the same name - all...

changed one def in TDD_Converter because there were 2 with the same name - all tests were successful - Report Table adjusted
parent d14a6a68
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,8 @@ from abc import ABC, abstractmethod ...@@ -36,7 +36,8 @@ from abc import ABC, abstractmethod
#TESTCASES OF OTHER STUDENTS #TESTCASES OF OTHER STUDENTS
#from other.AliciMuhamed.Test_Converter_Römische_Zahlen import TestRomanConverter as MomoTest #from other.AliciMuhamed.Test_Converter_Römische_Zahlen import TestRomanConverter as MomoTest
from other.BerishaAlma.test2converter import TestRomanConverter as AlmaTest #from other.BerishaAlma.test2converter import TestRomanConverter as AlmaTest
from other.GotsisWasilios.TDD_Converter import TestRomanNumber as WasiliTest
class IConverter(ABC): class IConverter(ABC):
......
...@@ -43,7 +43,7 @@ class TestRomanNumber (unittest.TestCase): ...@@ -43,7 +43,7 @@ class TestRomanNumber (unittest.TestCase):
def test_convert_downzero(self): def test_convert_downzero(self):
self.assertEqual(self.r.convert_int_to_str(-5), "Integer muss größer als 0 sein") self.assertEqual(self.r.convert_int_to_str(-5), "Integer muss größer als 0 sein")
def test_convert_downzero(self): def test_convert_thousand(self):
self.assertEqual(self.r.convert_int_to_str(1000), "M") self.assertEqual(self.r.convert_int_to_str(1000), "M")
if __name__ == "__main__": if __name__ == "__main__":
......
File added
...@@ -10,13 +10,13 @@ Roman Numbers - Codes of Group members tested with my testcases: ...@@ -10,13 +10,13 @@ Roman Numbers - Codes of Group members tested with my testcases:
| WeishauptOrlando | yes (5) | 2/26 failed (test_convertZero, test_convertNegative) | | WeishauptOrlando | yes (5) | 2/26 failed (test_convertZero, test_convertNegative) |
| SerchimoMarvin | - | - | | SerchimoMarvin | - | - |
Roman Numbers - My Codes tested with other students testcases:
| Name | Interface break | Failed Testcases | | Name | Interface break | Failed Testcases |
|------------------|-----------------|------------------| |------------------|-----------------|------------------|
| AliciMuhamed | no | none | | AliciMuhamed | no | none |
| BerishaAlma | no | none | | BerishaAlma | no | none |
| GotsisWasilios | | | | GotsisWasilios | no | none |
| PikkemaatLasse | | | | PikkemaatLasse | | |
| YildirimHatice | | | | YildirimHatice | | |
| WeishauptOrlando | | | | WeishauptOrlando | | |
......
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