22e1cc3dcdf765ab7e0ac7abe3782f2cde1be36e
[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   // httpClient=TestBed.get(HttpClient);
16   // httpTestingController=TestBed.get(httpTestingController);
17
18   it('should be created', () => {
19     const service: ColumnService = TestBed.get(ColumnService);
20     expect(service).toBeTruthy();
21   });
22 });