Skip to content
Snippets Groups Projects

RomanConverter

Merged Hatice Yildirim requested to merge develop into main
2 files
+ 0
66
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 0
13
import unittest
class Calculator:
def add(self, a, b):
return a + b
class TestCalculator(unittest.TestCase):
def test_add(self):
c = Calculator()
self.assertEqual(c.add(2,3), 5)
if __name__ == '__main__':
unittest.main()
\ No newline at end of file
Loading