it('should calculate profile completeness when controller is loaded', () => {
            spyOn(EmployeeModel, 'calculateProfileCompleteness');
            password = new Password(EmployeeModel, FormService, AuthenticationResource);

            expect(EmployeeModel.calculateProfileCompleteness).toHaveBeenCalled();