Skip to content
Snippets Groups Projects
Commit 9818d90f authored by Muhamed's avatar Muhamed
Browse files

calc function commit

parent 020f023c
No related branches found
No related tags found
No related merge requests found
Pipeline #19964 failed
import unittest
from Calculator import Calculator
class Calculator:
def add(self, a, b):
return a + b
def sub(self, a, b):
return a - b
class TestCalculator(unittest.TestCase):
def setUp(self):
......
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