Writing test cases in natural language first
Use natural language to write test cases first, and then use GitHub Copilot to generate code to improve test coverage.
Description
Example
class TestMultiply(unittest.TestCase):
def test_multiply(self):
# Tests for different cases, such as positive, negative, zero, decimal, and non-integer inputsExercise
Checklist for Further Learning
Last updated