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