From c3c51c9d900ce0fea0e852ed4b2ca3c792c2e6cc Mon Sep 17 00:00:00 2001 From: Arundathi Patil Date: Fri, 31 Aug 2018 21:46:20 +0530 Subject: utility.service- added test case Added test case to test and cover processApiError() function. Issue-ID: APPC-1064 Change-Id: I2a6e4a131853bb36d54e40bfe38766b5e62d59b6 Signed-off-by: Arundathi Patil --- src/app/shared/services/utilityService/utility.service.spec.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/app/shared/services/utilityService/utility.service.spec.ts b/src/app/shared/services/utilityService/utility.service.spec.ts index d865f04..c0cdb13 100644 --- a/src/app/shared/services/utilityService/utility.service.spec.ts +++ b/src/app/shared/services/utilityService/utility.service.spec.ts @@ -103,4 +103,11 @@ describe('UtilityService', () => { let traceValue = localStorage.getItem("Tracelvl"); expect(traceValue).toBe("0") })); + + it('should test processApiError function', inject([UtilityService], (service: UtilityService) => { + let spy = spyOn(NotificationsService.prototype, 'error'); + service.processApiError(); + expect(spy).toHaveBeenCalled(); + + })); }); \ No newline at end of file -- cgit 1.2.3-korg