Question: class Course: def _ _ init _ _ ( self , course _ id , craft _ type, schedule, time, cost, teacher, vacancy, students =

class Course:
def __init__(self, course_id, craft_type, schedule, time, cost, teacher, vacancy, students=[]):
self.course_id = course_id
self.craft_type = craft_type
self.schedule = schedule
self.time = time
self.cost = cost
self.teacher = teacher
self.vacancy= vacancy
self.students = students
def add_student(self, student, amount):
if len(self.students)< self.vacancy:
self.students.append((student, amount))
self.vacancy -=1
return True
return False
How can I write unit tests for each function of this code?

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!