From 08590b315a6bb3d7d4f57ed2ab72ba162d4851e3 Mon Sep 17 00:00:00 2001 From: Indrijeet kumar Date: Mon, 4 May 2020 14:20:31 +0530 Subject: test cases in new-role-function component test cases in new-role-function component Issue-ID: PORTAL-813 Change-Id: Ifc3f985b2cfe99d2dc48308c1c4ae7791b54eeac Signed-off-by: Indrijeet Kumar --- .../new-role-function.component.spec.ts | 26 ++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) (limited to 'ecomp-sdk/epsdk-app-overlay') diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/admin/role-functions/new-role-function/new-role-function.component.spec.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/admin/role-functions/new-role-function/new-role-function.component.spec.ts index 7ef63baf..32a69848 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/admin/role-functions/new-role-function/new-role-function.component.spec.ts +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/admin/role-functions/new-role-function/new-role-function.component.spec.ts @@ -49,6 +49,8 @@ import { RouterTestingModule } from '@angular/router/testing'; import { ConfirmationModalComponent } from 'src/app/modals/confirmation-modal/confirmation-modal.component'; import { BrowserDynamicTestingModule } from '@angular/platform-browser-dynamic/testing'; import { InformationModalComponent } from 'src/app/modals/information-modal/information-modal.component'; +import 'rxjs/add/observable/of'; + describe('NewRoleFunctionComponent', () => { let component: NewRoleFunctionComponent; @@ -73,7 +75,10 @@ describe('NewRoleFunctionComponent', () => { }) TestBed.overrideModule(BrowserDynamicTestingModule,{ set:{ - entryComponents:[ConfirmationModalComponent,InformationModalComponent] + entryComponents:[ + ConfirmationModalComponent, + InformationModalComponent + ] } }) .compileComponents(); @@ -90,6 +95,22 @@ describe('NewRoleFunctionComponent', () => { }); it('should test ngOnInit method',()=>{ + component.editRoleFunction={ + type: "type", + code: "code", + action: "action", + name: "name" + } + component.ngOnInit(); + }) + + it('should test else part of ngOnInit method',()=>{ + component.editRoleFunction={ + type: "menu", + code: "code", + action: "action", + name: "name" + } component.ngOnInit(); }) @@ -98,6 +119,7 @@ describe('NewRoleFunctionComponent', () => { }) it('should test openConfirmationModal method',()=>{ - component.openConfirmationModal("indrijeet","kumar") + component.openConfirmationModal("indrijeet","kumar"); }) + }); -- cgit 1.2.3-korg