示例#1
0
 def test_view_account_info_second(self):
     # Testing if the view account info function is displaying the correct output
     user_two = User('Tahiry')
     self.assertNotEqual(user_two.view_account_info(), 'Naomi')
示例#2
0
 def test_view_account_info(self):
     # Testing if view account info is displaying the correct output
     user_one = User('Naomi')
     self.assertEqual(user_one.view_account_info(), 'Naomi')