From: Rupinder Date: Thu, 27 Feb 2020 12:46:38 +0000 (+0530) Subject: added test case for run component X-Git-Tag: 3.0.0~60^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=698cb92a5a5ebf2852ba1fe20feb0994874ca3cf;p=portal%2Fsdk.git added test case for run component Wrote test case for run.component.spec.ts Issue-ID: PORTAL-834 Change-Id: Ic2fe3cbf996c34c9fd5bbb22bcf6187cf311d092 Signed-off-by: Rupinder --- diff --git a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.spec.ts b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.spec.ts index e9439dda..82eda851 100644 --- a/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.spec.ts +++ b/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/run/run.component.spec.ts @@ -1,6 +1,8 @@ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { RunComponent } from './run.component'; +import { HttpClientTestingModule } from '@angular/common/http/testing'; +import { RouterTestingModule } from '@angular/router/testing'; describe('RunComponent', () => { let component: RunComponent; @@ -8,7 +10,8 @@ describe('RunComponent', () => { beforeEach(async(() => { TestBed.configureTestingModule({ - declarations: [ RunComponent ] + declarations: [ RunComponent ], + imports: [HttpClientTestingModule, RouterTestingModule] }) .compileComponents(); })); @@ -22,4 +25,11 @@ describe('RunComponent', () => { it('should create', () => { expect(component).toBeTruthy(); }); + + it('should test ngOnInit method', () => { + component.ngOnInit(); + component.reportType !== "Dashboard"; + expect(component.stepNo).toEqual("8"); + }); + });