*PYTHON* Provide a Unittest class for the Circle class with two test methods for the area and the circumference methods. You need to use the setUp test method to initialize your test.
class Circle:
def __init__(self, r=1):
self.radius = r
def setRadius(self, r):
self.radius = r
def getRadius(self):
return self.radius
def area(self):
return 3.14 * self.radius * self.radius
def circumference(self):
return 2 * 3.14 * self.radius