def test_employee_name_is_none(employee: Employee): assert employee.fullname() is not None
def test_employee_name_is_correct(employee: Employee): assert employee.fullname() == 'test employee'