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

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