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