From 9818d90fda941df259ab779cbdaf4f3590070d14 Mon Sep 17 00:00:00 2001
From: Muhamed <Muhamedalici@hotmail.de>
Date: Mon, 24 Mar 2025 04:02:10 +0100
Subject: [PATCH] calc function commit

---
 calc/Calc_Test | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/calc/Calc_Test b/calc/Calc_Test
index e9845a7..29611ea 100644
--- a/calc/Calc_Test
+++ b/calc/Calc_Test
@@ -1,5 +1,11 @@
 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):
-- 
GitLab