utility.service- added test case 31/64031/1
authorArundathi Patil <arundpil@in.ibm.com>
Fri, 31 Aug 2018 16:16:20 +0000 (21:46 +0530)
committerIBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com>
Fri, 31 Aug 2018 16:19:07 +0000 (21:49 +0530)
Added test case to test and cover processApiError() function.

Issue-ID: APPC-1064
Change-Id: I2a6e4a131853bb36d54e40bfe38766b5e62d59b6
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
src/app/shared/services/utilityService/utility.service.spec.ts

index d865f04..c0cdb13 100644 (file)
@@ -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