import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { IcsActionPlanDialogComponent } from './ics-action-plan-dialog.component'; describe('IcsActionPlanDialogComponent', () => { let component: IcsActionPlanDialogComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ IcsActionPlanDialogComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(IcsActionPlanDialogComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });