// Valiate the parent department object of a employee object
 private static void assertEmployee(Employee employee, Department department) {
   Assert.assertSame(department, employee.getDepartment());
 }