def test_set_get_name(self):
     """
     tests the set_name() and get_name() functions
     accepts name1 and sets the user's name
     returns True if the function returns the user's correct name
     """
     personV = Person()
     personV.set_name("Vanessa")
     self.assertEqual(personV.get_name(), "Vanessa")
 def test_set_get_name(self):
     """
     tests the set_name() and get_name() functions
     accepts name1 and sets the user's name
     returns True if the function returns the user's correct name
     """
     personV = Person()
     personV.set_name("Vanessa")
     self.assertEqual(personV.get_name(), "Vanessa")