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