2019-12-03 14:32:50 +09:00
|
|
|
/* tslint:disable:no-unused-variable */
|
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { By } from '@angular/platform-browser';
|
|
|
|
import { DebugElement } from '@angular/core';
|
|
|
|
|
|
|
|
import { NoticeDetailDialogComponent } from './notice-detail.dialog.component';
|
|
|
|
|
2019-12-15 21:36:12 +09:00
|
|
|
describe('NoticeDialogComponent', () => {
|
2019-12-03 14:32:50 +09:00
|
|
|
let component: NoticeDetailDialogComponent;
|
|
|
|
let fixture: ComponentFixture<NoticeDetailDialogComponent>;
|
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
|
|
|
declarations: [NoticeDetailDialogComponent]
|
|
|
|
}).compileComponents();
|
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
fixture = TestBed.createComponent(NoticeDetailDialogComponent);
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|