added svcapi ui and camunda code
[it/otf.git] / otf-frontend / client / src / app / layout / onboarding / test-instances / test-instances.module.ts
1 /*  Copyright (c) 2019 AT&T Intellectual Property.                             #\r
2 #                                                                              #\r
3 #   Licensed under the Apache License, Version 2.0 (the "License");            #\r
4 #   you may not use this file except in compliance with the License.           #\r
5 #   You may obtain a copy of the License at                                    #\r
6 #                                                                              #\r
7 #       http://www.apache.org/licenses/LICENSE-2.0                             #\r
8 #                                                                              #\r
9 #   Unless required by applicable law or agreed to in writing, software        #\r
10 #   distributed under the License is distributed on an "AS IS" BASIS,          #\r
11 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #\r
12 #   See the License for the specific language governing permissions and        #\r
13 #   limitations under the License.                                             #\r
14 ##############################################################################*/\r
15 \r
16 \r
17 import { NgModule } from '@angular/core';\r
18 import { CommonModule } from '@angular/common';\r
19 \r
20 import { TestInstancesRoutingModule } from './test-instances-routing.module';\r
21 import { TestInstancesComponent } from './test-instances.component';\r
22 import { PageHeaderModule } from '../../../shared';\r
23 import { PerfectScrollbarModule } from 'ngx-perfect-scrollbar';\r
24 import { FilterPipeModule } from 'ngx-filter-pipe';\r
25 import { FormsModule } from '@angular/forms';\r
26 import { MatButtonModule, MatDialogModule, MatCheckboxModule, MatRadioModule, MatInputModule, MatIconModule, MatExpansionModule, MatCardModule } from '@angular/material';\r
27 import { CreateTestFormModule } from '../../../shared/modules/create-test-form/create-test-form.module';\r
28 import { CodemirrorModule } from 'ng2-codemirror';\r
29 import { CreateTestInstanceFormModule } from '../../../shared/modules/create-test-instance-form/create-test-instance-form.module';\r
30 \r
31 @NgModule({\r
32   imports: [\r
33     CommonModule,\r
34     PageHeaderModule,\r
35     TestInstancesRoutingModule,\r
36     FilterPipeModule,\r
37     FormsModule,\r
38     MatButtonModule,\r
39     MatCheckboxModule,\r
40     MatRadioModule,\r
41     MatInputModule,\r
42     MatIconModule,\r
43     MatExpansionModule,\r
44     CodemirrorModule,\r
45     MatCardModule,\r
46     CreateTestInstanceFormModule\r
47   ],\r
48   declarations: [TestInstancesComponent]\r
49 })\r
50 export class TestInstancesModule { }\r