2025-08-07 16:06:25 +02:00
|
|
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
2025-08-14 14:46:35 +02:00
|
|
|
import { Radio } from './radio';
|
2025-08-07 16:06:25 +02:00
|
|
|
|
2025-08-14 14:46:35 +02:00
|
|
|
describe('Radio', () => {
|
|
|
|
let component: Radio;
|
|
|
|
let fixture: ComponentFixture<Radio>;
|
2025-08-07 16:06:25 +02:00
|
|
|
|
|
|
|
beforeEach(async () => {
|
|
|
|
await TestBed.configureTestingModule({
|
2025-08-14 14:46:35 +02:00
|
|
|
imports: [Radio]
|
2025-08-07 16:06:25 +02:00
|
|
|
})
|
|
|
|
.compileComponents();
|
|
|
|
|
2025-08-14 14:46:35 +02:00
|
|
|
fixture = TestBed.createComponent(Radio);
|
2025-08-07 16:06:25 +02:00
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|