Generation

testsTue, 22 Nov 2022

function sum(a, b) { return a-b; }

import unittest class TestSum(unittest.TestCase): def test_sum(self): self.assertEqual(sum(1, 4), 7)

Want to kickstart your project?Use the new AI Studio to create your code