Skip to content
Snippets Groups Projects

RomanConverter

Merged Hatice Yildirim requested to merge develop into main
3 files
+ 53
0
Compare changes
  • Side-by-side
  • Inline
Files
3
calculator.py 0 → 100644
+ 13
0
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