9c3c188711495c0578784a27a27b784615566a7e
[sdc.git] / catalog-ui / src / app / ng2 / pages / properties-assignment / tosca-function / tosca-custom-function / tosca-custom-function.component.spec.ts
1 /*
2  * -
3  *  ============LICENSE_START=======================================================
4  *  Copyright (C) 2023 Nordix Foundation.
5  *  ================================================================================
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *       http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *
18  *  SPDX-License-Identifier: Apache-2.0
19  *  ============LICENSE_END=========================================================
20  */
21
22 import {async, ComponentFixture, TestBed} from '@angular/core/testing';
23
24 import {ToscaConcatFunctionComponent} from '../tosca-concat-function/tosca-concat-function.component';
25 import {ToscaCustomFunctionComponent} from './tosca-custom-function.component';
26 import {FormsModule, ReactiveFormsModule} from "@angular/forms";
27 import {ToscaFunctionComponent} from "../tosca-function.component";
28 import {TranslateModule} from "../../../../shared/translator/translate.module";
29 import {ToscaGetFunctionComponent} from "../tosca-get-function/tosca-get-function.component";
30 import {UiElementsModule} from "../../../../components/ui/ui-elements.module";
31 import {YamlFunctionComponent} from "../yaml-function/yaml-function.component";
32
33 describe('ToscaCustomFunctionComponent', () => {
34     let component: ToscaCustomFunctionComponent;
35     let fixture: ComponentFixture<ToscaCustomFunctionComponent>;
36
37     beforeEach(async(() => {
38         TestBed.configureTestingModule({
39             declarations: [
40                 ToscaCustomFunctionComponent,
41                 ToscaConcatFunctionComponent,
42                 ToscaFunctionComponent,
43                 ToscaGetFunctionComponent,
44                 YamlFunctionComponent],
45             imports: [
46                 FormsModule,
47                 ReactiveFormsModule,
48                 TranslateModule,
49                 UiElementsModule
50             ]
51         })
52         .compileComponents();
53     }));
54
55     beforeEach(() => {
56         fixture = TestBed.createComponent(ToscaCustomFunctionComponent);
57         component = fixture.componentInstance;
58         fixture.detectChanges();
59     });
60
61     it('should create', () => {
62         expect(component).toBeTruthy();
63     });
64 });