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