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