def test_set_get_age(self):
     """
     tests the set_age() and get_age() functions
     accepts age1 and sets the user's age
     returns True if the function returns the user's correct age
     """
     personV = Person()
     personV.set_age(18)
     self.assertEqual(personV.get_age(), 18)
 def test_set_get_age(self):
     """
     tests the set_age() and get_age() functions
     accepts age1 and sets the user's age
     returns True if the function returns the user's correct age
     """
     personV = Person()
     personV.set_age(18)
     self.assertEqual(personV.get_age(), 18)