summaryrefslogtreecommitdiffstats
path: root/portal-FE-common/src/app/shared/services/contact-us
diff options
context:
space:
mode:
authorjegadeeshbabu3 <jegadeesh.babu@att.com>2020-02-28 17:42:20 +0530
committerJegadeesh Babu <jegadeesh.babu@att.com>2020-02-28 15:35:27 +0000
commit4c6f6a443cb2e6effa995e77d56689c1c2dab4ad (patch)
tree7a961f7c4e2c7de9cea8f2acff473c9f4b11182e /portal-FE-common/src/app/shared/services/contact-us
parenta03dfa273ef6e196bf65acc54b9357d35eb0ed5e (diff)
Fixed the test cases,added sonar config
Fixed test cases and added sonar config details Issue-ID: PORTAL-837 Change-Id: Ie4aa104871cfbbd6c6e36500f5ef2e250bafb575 Signed-off-by: jz385p <jegadeesh.babu@att.com>
Diffstat (limited to 'portal-FE-common/src/app/shared/services/contact-us')
-rw-r--r--portal-FE-common/src/app/shared/services/contact-us/contact-us.service.spec.ts24
1 files changed, 23 insertions, 1 deletions
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")
+ });
});