En python, ¿cómo escribimos casos de prueba para nuestras clases? Por ejemplo:Python ... clases de prueba?
class Employee(object):
num_employees = 0
# numEmployess is incremented each time an employee is constructed
def __init__(self, salary=0.0, firstName="", lastName="", ssID="", DOB=datetime.fromordinal(1), startDate=datetime.today()): #Employee attributes
self.salary=salary
self.firstName = firstName
self.lastName = lastName
self.ssID = ssID
self.DOB = DOB
self.startDate = startDate
Employee.num_employees += 1 #keep this
def __str__(self): #returns the attributes of employee for print
return str(self.salary) + ', ' + self.firstName + ' ' + self.lastName + ', ' + self.ssID + ', ' + str(self.DOB) + ', ' + str(self.startDate)
Sé que hay algo llamado pruebas unitarias. Pero no estoy seguro de cómo funciona en absoluto. No pude encontrar una buena explicación que entendí en línea.
¿Quiere decir [como este] (http://docs.python.org/library/unittest.html)? –