/* tslint:disable:no-unused-variable */ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { CaInputRadiobuttonsComponent } from '../ca-input-radiobuttons/ca-input-radiobuttons.component'; describe('TaInputRadiobuttonsComponent', () => { let component: CaInputRadiobuttonsComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [CaInputRadiobuttonsComponent], }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(CaInputRadiobuttonsComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });