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