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

all tests were successful - report table adjusted

parent 2252fd62
No related branches found
No related tags found
No related merge requests found
No preview for this file type
import unittest
from abc import ABC, abstractmethod
import sys
sys.path.append('C:/Users/HP/OneDrive/Praxisprojekt Semester 6/praxisprojekt-technologiebasierte-innovationen')
from Project_tests.converter import DanisConverter as DaniConv
class IRomanNumber(ABC):
@abstractmethod
......@@ -18,7 +21,7 @@ class RomanNumber(IRomanNumber):
class TestRomanConverter(unittest.TestCase):
def setUp(self):
self.converter = RomanNumber()
self.converter = DaniConv()
def test_single_value(self):
self.assertEqual(self.converter.convert(3), "III")
......
......@@ -15,7 +15,7 @@ Roman Numbers - My Codes tested with other students testcases:
| Name | Interface break | Failed Testcases |
|------------------|-----------------|------------------------------|
| AliciMuhamed | no | 1/7 Tests failed (test_1999) |
| BerishaAlma | | |
| BerishaAlma | no | none |
| GotsisWasilios | | |
| PikkemaatLasse | | |
| YildirimHatice | | |
......
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