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

Test successful

parent cbff26a5
No related branches found
No related tags found
No related merge requests found
Pipeline #20048 passed
......@@ -144,5 +144,9 @@ class TestStringCalculator(unittest.TestCase):
res = self.c.add(" 4 , 5")
self.assertEqual(res, 9)
def test_multiple_num_with_thousandone(self):
res = self.c.add(" 2, 1001, 5")
self.assertEqual(res, 7)
if __name__ == "__main__":
unittest.main()
\ No newline at end of file
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