예제 #1
0
 def test_full_constructor(self):
     e = Employee("John", 60)
     self.assertEqual("John", e.get_name())
     self.assertEqual(60, e.get_salary())
예제 #2
0
 def setUp(self):
     self.e = Employee()