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