X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=portal-FE-common%2Fsrc%2Fapp%2Fshared%2Fservices%2Fcontact-us%2Fcontact-us.service.spec.ts;h=3a91b523727d5f0801043ffcd589294c9b4ca2f5;hb=4c6f6a443cb2e6effa995e77d56689c1c2dab4ad;hp=03d55d05d083425198ca5aafea9cbb1662493bf6;hpb=a03dfa273ef6e196bf65acc54b9357d35eb0ed5e;p=portal.git diff --git a/portal-FE-common/src/app/shared/services/contact-us/contact-us.service.spec.ts b/portal-FE-common/src/app/shared/services/contact-us/contact-us.service.spec.ts index 03d55d05..3a91b523 100644 --- a/portal-FE-common/src/app/shared/services/contact-us/contact-us.service.spec.ts +++ b/portal-FE-common/src/app/shared/services/contact-us/contact-us.service.spec.ts @@ -39,12 +39,34 @@ import { TestBed } from '@angular/core/testing'; import { ContactUsService } from './contact-us.service'; +import { HttpClientTestingModule } from '@angular/common/http/testing'; describe('ContactUsService', () => { - beforeEach(() => TestBed.configureTestingModule({})); + beforeEach(() => TestBed.configureTestingModule({imports:[HttpClientTestingModule]})); it('should be created', () => { const service: ContactUsService = TestBed.get(ContactUsService); expect(service).toBeTruthy(); }); + + it('addContactUs should return stubbed value', () => { + const service: ContactUsService = TestBed.get(ContactUsService); + spyOn(service, 'addContactUs').and.callThrough(); + service.addContactUs("TEST"); + expect(service.addContactUs).toHaveBeenCalledWith("TEST") + }); + + it('modifyContactUs should return stubbed value', () => { + const service: ContactUsService = TestBed.get(ContactUsService); + spyOn(service, 'modifyContactUs').and.callThrough(); + service.modifyContactUs("TEST"); + expect(service.modifyContactUs).toHaveBeenCalledWith("TEST") + }); + + it('removeContactUs should return stubbed value', () => { + const service: ContactUsService = TestBed.get(ContactUsService); + spyOn(service, 'removeContactUs').and.callThrough(); + service.removeContactUs("TEST"); + expect(service.removeContactUs).toHaveBeenCalledWith("TEST") + }); });