Testing Fundamentals - Testing Types and Levels
Given this regression test code snippet:
def multiply(x, y):
return x * y
assert multiply(3, 4) == 12
assert multiply(0, 5) == 0
assert multiply(-1, 2) == -2
print("All tests passed")What will be the output when running this code?
