it('should have employee property', () => {
            spyOn(EmployeeModel, 'getItem').and.returnValue(itemMock);
            employeeEditPassword = new EmployeeEditPassword(EmployeeModel, AuthenticationResource, FormService);

            expect(employeeEditPassword.employee).toEqual(itemMock);