e663001a0a3a7cfd28c7a7e8de026b026288a991
[portal/sdk.git] /
1 import { TestBed } from '@angular/core/testing';
2
3 import { ColumnService } from './column.service';
4 import { HttpClient } from '@angular/common/http';
5 import { HttpTestingController, HttpClientTestingModule } from '@angular/common/http/testing';
6
7 describe('ColumnService', () => {
8   let httpClient: HttpClient;
9   let httpTestingController: HttpTestingController;
10   beforeEach(() => 
11   TestBed.configureTestingModule({
12        imports: [HttpClientTestingModule]
13   }));
14
15   it('should be created', () => {
16     const service: ColumnService = TestBed.get(ColumnService);
17     expect(service).toBeTruthy();
18   });
19 });