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