Calculator Unit Testing

# Introduction Your task is to test a Python class called `Calculator` that performs basic arithmetic operations, including addition, subtraction, multiplication, and division. The `Calculator` class have the following methods: - `add(a, b)` : returns the sum of a and b. - `subtract(a, b)` : returns the difference between a and b. - `multiply(a, b)` : returns the product of a and b. - `divide(a, b)` : returns the quotient of a divided by b. If b is zero, the function should raise a ValueError with the message "Cannot divide by zero".

|60 : 00

Click the virtual machine below to start practicing