2019-11-13 06:42:30 +00:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
2019-11-22 08:25:51 +00:00
|
|
|
import { MessageBoxComponent } from './message.component';
|
2019-11-13 06:42:30 +00:00
|
|
|
|
|
|
|
describe('MessageBoxComponent', () => {
|
|
|
|
let component: MessageBoxComponent;
|
|
|
|
let fixture: ComponentFixture<MessageBoxComponent>;
|
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2019-11-22 08:25:51 +00:00
|
|
|
declarations: [MessageBoxComponent]
|
|
|
|
}).compileComponents();
|
2019-11-13 06:42:30 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
fixture = TestBed.createComponent(MessageBoxComponent);
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|