Testing Fundamentals - Testing Types and Levels
Given the Python function and test below, what will be the test result?
def multiply(a, b):
return a * b
assert multiply(3, 4) == 12
assert multiply(0, 5) == 0
assert multiply(-1, 3) == -3
assert multiply(2, 2) == 5