Question: Please provide code for a unit test program to test the following functions: def addition(x, y): return x + y def subtraction(x, y): return x
Please provide code for a unit test program to test the following functions:
def addition(x, y):
return x + y
def subtraction(x, y):
return x - y
def multiplication(x, y):
return x * y
def division(x, y):
return x / y
For each function, should test:
- When given two positive numbers, whether the function returns correct value
- When given negative numbers, whether the function returns correct value
- When given one positive number and one negative number , whether the function returns correct value
Step by Step Solution
3.48 Rating (161 Votes )
There are 3 Steps involved in it
Heres an example of a unit test program using Pythons builtin unittest framework to test the additio... View full answer
Get step-by-step solutions from verified subject matter experts
