ef0e92f5cbcef63169c9c663dafc996fe38e7045
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / ui / confirm-dialog / confirm-dialog.component.spec.ts
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20
21 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
22
23 import { ConfirmDialogComponent } from './confirm-dialog.component';
24 import { MatDialogModule } from '@angular/material/dialog';
25 import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
26
27 describe('ConfirmDialogComponent', () => {
28   let component: ConfirmDialogComponent;
29   let fixture: ComponentFixture<ConfirmDialogComponent>;
30
31   beforeEach(async(() => {
32     TestBed.configureTestingModule({
33       declarations: [ ConfirmDialogComponent ],
34       imports: [ MatDialogModule ],
35       providers: [
36         { provide: MAT_DIALOG_DATA, useValue: {} },
37         { provide: MatDialogRef, useValue: {} }
38     ]
39     })
40     .compileComponents();
41   }));
42
43   beforeEach(() => {
44     fixture = TestBed.createComponent(ConfirmDialogComponent);
45     component = fixture.componentInstance;
46     fixture.detectChanges();
47   });
48
49   it('should create', () => {
50     expect(component).toBeTruthy();
51   });
52 });